import { FC } from "react"; import { NvUploadedFile } from '..'; interface SingleFileThumbProps { file: File | NvUploadedFile; } /** * Functional component for displaying a single file thumbnail with an icon and file name. * * @param file The uploaded file object containing the file name. * @returns JSX element displaying the file thumbnail with an icon and file name. */ export declare const SingleFileThumb: FC; export {};