UNPKG

323 BTypeScriptView Raw
1import type React from 'react';
2import type { AlertProps } from './Alert';
3import ErrorBoundary from './ErrorBoundary';
4export type { AlertProps } from './Alert';
5type CompoundedComponent = React.FC<AlertProps> & {
6 ErrorBoundary: typeof ErrorBoundary;
7};
8declare const Alert: CompoundedComponent;
9export default Alert;