declare class Toast {
    private root;
    private messages;
    constructor();
    private showMsg;
    private closeMsg;
    private autoCloseMsg;
    private renderToast;
    success(msg: string, isFill?: boolean): void;
    warning(msg: string, isFill?: boolean): void;
    error(msg: string, isFill?: boolean): void;
    info(msg: string, isFill?: boolean): void;
}
export declare const toast: Toast;
export {};
