Files
video-gen/video-gen-admin/node_modules/antd/lib/alert/index.d.ts
T
2026-05-25 17:08:18 +08:00

10 lines
363 B
TypeScript

import InternalAlert from './Alert';
import ErrorBoundary from './ErrorBoundary';
export type { AlertProps, AlertSemanticType } from './Alert';
export type { ErrorBoundaryProps } from './ErrorBoundary';
type CompoundedComponent = typeof InternalAlert & {
ErrorBoundary: typeof ErrorBoundary;
};
declare const Alert: CompoundedComponent;
export default Alert;