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