declare type Localizer = (key: string, ...args: any[]) => string; import './components/notify-component'; export interface NotifyOptions { message?: string; messageArgs?: Object; htmlTag?: string; htmlUrl?: string; containerId?: string; delay?: number; showCloseButton?: boolean; type?: NotifyType; position?: NotifyPosition; styles?: NotifyStyles; classifiers?: NofifyClassifiers; model?: T; } export interface NotifyStyles { backgroundColor?: string; textColor?: string; iconColor?: string; } export declare type NotifyPosition = 'bottom' | 'center' | 'top'; export declare type NotifyType = 'danger' | 'warning' | 'info' | 'success'; export declare type NofifyClassifiers = 'fit-bottom'; export declare const notify: (options: NotifyOptions, localizer?: Localizer) => Promise; export {};