export declare function useToast(): {
    message: (message: string, options?: import('../plugins').ToastOptions) => {
        destroy: () => void;
        close: () => any;
    };
    success: (message: string, options?: Omit<import('../plugins').ToastOptions, "type">) => {
        destroy: () => void;
        close: () => any;
    };
    error: (message: string, options?: Omit<import('../plugins').ToastOptions, "type">) => {
        destroy: () => void;
        close: () => any;
    };
    info: (message: string, options?: Omit<import('../plugins').ToastOptions, "type">) => {
        destroy: () => void;
        close: () => any;
    };
    warning: (message: string, options?: Omit<import('../plugins').ToastOptions, "type">) => {
        destroy: () => void;
        close: () => any;
    };
};
