import { IToastOptions, IToastType } from './props';

export declare function addToast(title: string, type?: IToastType, options?: IToastOptions): void;
export declare function removeToast(id: number): void;
export declare function useToasts(): {
    toasts: import('vue').Ref<{
        id: number;
        title: string;
        type: IToastType;
        duration?: number | undefined;
        description?: string | undefined;
        handle?: {
            text: string;
            click: () => void;
        } | undefined;
    }[]>;
    addToast: typeof addToast;
    removeToast: typeof removeToast;
};
