import React, { FC } from 'react'; export declare const NotificationTypes: ["success", "warning", "error", "info", "primary"]; export declare type NotificationType = typeof NotificationTypes[number]; export interface NoticeProps { className?: string; content: React.ReactNode; closable: boolean; duration: number; onClose?: (key?: React.Key) => void; type?: NotificationType; suffixCls: string; key: React.Key; style?: React.CSSProperties; } declare const Notice: FC; export default Notice;