import { Observable } from 'rxjs'; export declare enum NotifyType { Default = 0, Primary = 1, Info = 2, Warning = 3, Success = 4, Danger = 5 } export interface NotifyConfig { content: string; autoHide?: boolean; type?: NotifyType; time?: number; } export declare class NotifyController { notify: Observable; private notifySource; constructor(); push(config: NotifyConfig | string): void; }