amis-rpc-design/node_modules/antd/es/alert/index.d.ts
2023-10-07 19:42:30 +08:00

10 lines
323 B
TypeScript

/// <reference types="react" />
import type { AlertProps } from './Alert';
import ErrorBoundary from './ErrorBoundary';
export type { AlertProps } from './Alert';
type CompoundedComponent = React.FC<AlertProps> & {
ErrorBoundary: typeof ErrorBoundary;
};
declare const Alert: CompoundedComponent;
export default Alert;