export type NotificationTone = "info" | "success" | "warning" | "danger"; export type NotificationPosition = "top-left" | "top-right" | "bottom-left" | "bottom-right"; export interface NotificationOptions { selector: string; title?: string; message: string; tone?: NotificationTone; dismissible?: boolean; duration?: number; icon?: string; position?: NotificationPosition; theme?: "light" | "dark"; hydrate?: boolean; onClose?: () => void; actionLabel?: string; onAction?: () => void; } //# sourceMappingURL=Notification.types.d.ts.map