export interface NewNotification { message: string; aliveFor?: number; keepAlive?: boolean; children?: any; } declare const notify: { info: (params: NewNotification | string) => void; success: (params: NewNotification | string) => void; danger: (params: NewNotification | string) => void; }; export default notify;