import { NvUploaderModes } from '../types.ts'; import { FC } from "react"; import { NvUploadedFile } from '..'; interface SingleSmartViewProps { file: NvUploadedFile; mode: NvUploaderModes; imageUrls?: { [key: string]: string; }; isRemote?: boolean; } /** * Functional component for rendering a single file or image based on the mode and file type. * * @param file The file object containing type, name, and url properties. * @param mode The mode of the uploader component. * @param imageUrls Object containing image URLs. * @param isRemote Boolean indicating if the file is remote. * @returns JSX element displaying the file or image based on the mode and file type. */ export declare const SingleSmartView: FC; export {};