import { type AlertProps as AntdAlertProps } from 'antd'; export interface AlertProps extends Omit { type?: 'tip' | 'info' | 'success' | 'warning' | 'error' | 'plain'; } export declare const Alert: React.FC;