import { NotificationCloseAllMethod, NotificationCloseMethod, NotificationErrorMethod, NotificationInfoMethod, NotificationInstance, NotificationOptions, NotificationSuccessMethod, NotificationThemeList, NotificationWarningMethod, NotificationConfigMethod } from './type'; export interface Notification { (theme: NotificationThemeList, options: NotificationOptions): Promise; info: NotificationInfoMethod; success: NotificationSuccessMethod; warning: NotificationWarningMethod; error: NotificationErrorMethod; closeAll: NotificationCloseAllMethod; close: NotificationCloseMethod; config: NotificationConfigMethod; } export declare const NotificationPlugin: Notification;