import { FC } from 'react'; interface INotifyProps { className?: string; } declare type INotifyType = 'info' | 'success' | 'error' | 'warning'; interface INotifyEventOptions { message?: string; type?: INotifyType; duration?: number; } declare const open: (option?: INotifyEventOptions | undefined) => void; declare const info: (option?: INotifyEventOptions | undefined) => void; declare const success: (option?: INotifyEventOptions | undefined) => void; declare const error: (option?: INotifyEventOptions | undefined) => void; declare const warning: (option?: INotifyEventOptions | undefined) => void; declare const Notify: FC & { open: typeof open; } & { info: typeof info; } & { success: typeof success; } & { error: typeof error; } & { warning: typeof warning; }; export default Notify;