import type { IconifyIcon } from "@iconify/types"; import type { SVGAttributes } from "svelte/elements"; type $$ComponentProps = { icon: IconifyIcon; size?: number; } & Omit, "width" | "height">; declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">; type Icon = ReturnType; export default Icon;