import { ComponentType } from 'react'; import { IconPropsV1 } from './FileIconSet/v1'; import { IconPropsV2 } from './FileIconSet/v2'; import { GeneralType, SupportedMimeType } from './mimeTypes'; export declare type IconType = 'standard' | 'alt'; export declare type IconVersion = '1' | '2'; declare type IconProps = { '1': IconPropsV1; '2': IconPropsV2; }; declare type IconMap = { [v in IconVersion]: { standard: Record>; alt?: Record>; }; }; export declare const iconMap: IconMap; export {}; //# sourceMappingURL=iconMap.d.ts.map