import type React from 'react'; export type IconSizeToken = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export type IconStrokeToken = 'thin' | 'regular' | 'bold'; export type IconProps = { size?: IconSizeToken | number; strokeWidth?: IconStrokeToken | number; title?: string; className?: string; style?: React.CSSProperties; }; export declare function IconSvg({ size, strokeWidth, title, className, style, children, }: Readonly): React.ReactNode; //# sourceMappingURL=IconSvg.d.ts.map