import type { IconNode } from './types'; import type { Snippet } from 'svelte'; interface Props { type: 'outline' | 'filled'; name: string; color?: string; size?: number | string; stroke?: number | string; iconNode: IconNode; class?: string; children?: Snippet; [key: string]: any; } declare const Icon: import("svelte").Component; type Icon = ReturnType; export default Icon;