export interface HIDIconProps { /** Icon color */ color?: string; /** Icon width */ width?: number; /** Icon height */ height?: number; /** XS:16px, S:24px, M:32px, L:64px, XL:128px , Default S:24px*/ size?: 'XS' | 'S' | 'M' | 'L' | 'XL'; /**data_test id */ dataTestId?: string; } export interface HIDIconState { color?: string; width?: number; height?: number; } export declare const getWidth: (size: any, width: any) => any; export declare const getHeight: (size: any, height: any) => any;