index.d.ts 285 B

12345678
  1. import InternalAlert from './Alert';
  2. import ErrorBoundary from './ErrorBoundary';
  3. export type { AlertProps } from './Alert';
  4. type CompoundedComponent = typeof InternalAlert & {
  5. ErrorBoundary: typeof ErrorBoundary;
  6. };
  7. declare const Alert: CompoundedComponent;
  8. export default Alert;