import icons from "./iconsObject"; export declare type IconName = keyof typeof icons; export interface IconProps { readonly color?: string; readonly size?: string | number; } export interface IconComponentProps extends IconProps { readonly name: IconName; }