export type IconSize = 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | '3xl'; export type IconSizeProp = IconSize | number; /** Pass a tuple [mobile, desktop] to apply different sizes per breakpoint. */ export type ResponsiveIconSize = IconSize | readonly [IconSize, IconSize]; /** Pixel values matching the --icon-sm/md/lg/xl design tokens (Sizes collection) */ export declare const ICON_SIZES: Record; //# sourceMappingURL=types.d.ts.map