/** * @author Timur Kuzhagaliyev * @copyright 2019 * @license MIT */ import { ElementType } from 'react'; import { Nullable } from 'tsdef'; import { FileData } from '../types/file.types'; import { ChonkyIconProps, FileIconData } from '../types/icons.types'; export declare const ChonkyIconContext: import("react").Context>; export declare const VideoExtensions: string[]; export declare const ImageExtensions: string[]; export declare const AudioExtensions: string[]; export declare const ColorsLight: string[]; export declare const ColorsDark: string[]; export declare const useIconData: (file: Nullable) => FileIconData;