import type { SVGAttributes } from 'svelte/elements'; type TitleType = { id?: string; title?: string; }; type DescType = { id?: string; desc?: string; }; export interface BaseProps extends SVGAttributes { size?: string; role?: string; color?: string; variation?: 'solid' | 'outline' | 'mini' | 'micro'; strokeWidth?: string; } export interface Props extends BaseProps { title?: TitleType; desc?: DescType; ariaLabel?: string; focusable?: 'true' | 'false' | 'auto'; } export {};