export type ToastVariant = "info" | "success" | "warning" | "error"; export type ToastMessage = { id?: string; title?: string; message: string; variant?: ToastVariant; durationMs?: number; }; export type ToastOptions = { selector: string; position?: "top-right" | "top-left" | "bottom-right" | "bottom-left"; toasts?: ToastMessage[]; hydrate?: boolean; }; //# sourceMappingURL=Toast.types.d.ts.map