import type { CnMessageProps } from './types';
export interface ShowOptions extends CnMessageProps {
    content?: any;
    duration?: number;
    showMask?: boolean;
}
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 warning: any;
export declare const help: any;
export declare const loading: any;
