export declare const elToastStates: readonly ["error", "warning", "success"]; export type ElToastStates = (typeof elToastStates)[number]; export interface ToastOptions { title: string; state: ElToastStates; description?: string; allowDuplicates?: boolean; } export declare const toast: (msg: string, options?: Partial) => void; declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly>, {}, {}>; export default _default;