import { MessageProps } from './message';
export interface ShowOptions extends MessageProps {
    content?: any;
    duration?: number;
}
export declare const hide: () => void;
export declare const show: (options: ShowOptions) => () => void;
export declare const success: any;
export declare const error: any;
export declare const notice: any;
export declare const help: any;
export declare const loading: any;
