/** * @author Timur Kuzhagaliyev * @copyright 2020 * @license MIT */ import React from 'react'; import { Nullable } from 'tsdef'; import { DndEntryState } from '../../types/file-list.types'; import { ChonkyIconName } from '../../types/icons.types'; export type FileEntryState = { childrenCount: Nullable; color: string; icon: ChonkyIconName | string; thumbnailUrl: Nullable; iconSpin: boolean; selected: boolean; focused: boolean; }; export interface FileEntryPreviewProps { className?: string; entryState: FileEntryState; dndState: DndEntryState; } export declare const GridEntryPreviewFolder: React.FC; export declare const GridEntryPreviewFile: React.FC; export declare const useCommonEntryStyles: any;