import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type NotificationProps = Omit, "class"> & { tone?: "info" | "success" | "warning" | "error"; title: string; message?: string; dismissible?: boolean; dismissLabel?: string; locale?: string; onDismiss?: () => void; class?: string; actions?: Snippet; children?: Snippet; }; declare const Notification: import("svelte").Component; type Notification = ReturnType; export default Notification; //# sourceMappingURL=Notification.svelte.d.ts.map