import type { SVGAttributes } from 'svelte/elements'; import { type IconName } from './icons'; type IconData = { path: string; viewBox: string; stroke?: string; }; type $$ComponentProps = { icon?: IconName; } & Partial & SVGAttributes; declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">; type Icon = ReturnType; export default Icon;