import { ReactNode } from 'react'; interface NotifyOptions { description?: string; icon?: ReactNode; duration?: number; id?: string | number; } export declare const notify: { success(message: string, options?: NotifyOptions): string | number; error(message: string, options?: NotifyOptions): string | number; info(message: string, options?: NotifyOptions): string | number; warning(message: string, options?: NotifyOptions): string | number; message(message: string, options?: NotifyOptions): string | number; dismiss(id?: string | number): void; }; export {}; //# sourceMappingURL=notify.d.ts.map