import type { IconSvgElement } from '../create-hugeicon-singleton'; import type { SVGAttributes } from 'svelte/elements'; interface Props extends SVGAttributes { icon: IconSvgElement; altIcon?: IconSvgElement; size?: string | number; strokeWidth?: number; absoluteStrokeWidth?: boolean; color?: string; showAlt?: boolean; class?: string; /** * @deprecated Use `class` prop instead. This prop will be removed in a future version. */ className?: string; } declare const HugeiconsIcon: import("svelte").Component; type HugeiconsIcon = ReturnType; export default HugeiconsIcon;