export type PropsOption = Partial<{ id: string; customClass: string; position: string; title: string; message: string; type: string; duration: number; closable: boolean; iconClass: string; offset: number; useHtml: boolean; onClose: Function; onClick: Function; }>; declare function Notification(option: string | PropsOption): void; declare namespace Notification { var success: (option: PropsOption) => void; var warning: (option: PropsOption) => void; var info: (option: PropsOption) => void; var error: (option: PropsOption) => void; var closeAll: () => void; } export { Notification };