import type { Notification } from '../types'; export declare function useToast(): { add: (notification: Partial) => { id: string; title?: string | undefined; description?: string | undefined; icon?: string | undefined; avatar?: Partial | undefined; closeButton?: Partial | undefined; timeout?: number | undefined; actions?: import("../types").NotificationAction[] | undefined; click?: Function | undefined; callback?: Function | undefined; color?: string | undefined; ui?: any; }; remove: (id: string) => void; };