import { type ToastContent, type ToastId, type ToastOptions, type ToastType } from './Toast.types'; declare class ToastService { toasts: ToastType[]; getToasts: () => ToastType[]; setToasts: (newToasts: ToastType[]) => void; has: (toastId: ToastId) => boolean; add: (content: ToastContent, options?: ToastOptions) => string; update: (toastId: ToastId, content: ToastContent, options?: ToastOptions) => string; remove: (id: ToastId) => boolean; removeAll: () => void; } export default ToastService; //# sourceMappingURL=ToastService.d.ts.map