import { FC } from "react"; import { NvUploadedFile } from '..'; interface ThumbsProps { files: FileList | NvUploadedFile[]; imageUrls?: { [key: string]: string; }; isRemote?: boolean; } /** * Renders a list of thumbnails based on the provided files and image URLs. * Thumbnails are sorted with images first and icons for other file types. * * @param files - Array of files or file-like objects to display as thumbnails. * @param imageUrls - Object mapping file names to their corresponding image URLs. * @param isRemote - Indicates if the files are remote or local. Defaults to false. * @returns An array of JSX elements representing the thumbnails. */ export declare const Thumbs: FC; export {};