/** * @author Timur Kuzhagaliyev * @copyright 2020 * @license MIT */ import React from 'react'; import { Nullable } from 'tsdef'; import { FileData } from '../../types/file.types'; export interface FileEntryNameProps { file: Nullable; className?: string; shortenFileName: boolean; } export declare const FileEntryName: React.FC;