import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type TagProps = Omit, "class"> & { tone?: "neutral" | "success" | "warning" | "error" | "info"; size?: "sm" | "md"; dismissible?: boolean; dismissLabel?: string; disabled?: boolean; onDismiss?: (event: MouseEvent) => void; class?: string; children?: Snippet; }; declare const Tag: import("svelte").Component; type Tag = ReturnType; export default Tag; //# sourceMappingURL=Tag.svelte.d.ts.map