import { ColorsType } from '../../theme/colors'; export declare type IconSizeType = 'small' | 'medium' | 'large' | 'extraLarge'; export declare type IconRegisterProps = Required>; export interface IconProps { size?: IconSizeType; clickable?: boolean; resizable?: boolean; viewBox?: string; d?: string | string[]; name?: string; color?: ColorsType; }