import type { Snippet } from "svelte"; import type { HTMLButtonAttributes } from "svelte/elements"; type IconButtonProps = Omit & { "aria-label": string; size?: "sm" | "md" | "lg"; variant?: "ghost" | "secondary" | "danger"; type?: "button" | "submit" | "reset"; disabled?: boolean; class?: string; children: Snippet; }; declare const IconButton: import("svelte").Component; type IconButton = ReturnType; export default IconButton; //# sourceMappingURL=IconButton.svelte.d.ts.map