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