import React from "react"; type FilesProps = { fileList: File[]; selectedFiles: Set; onToggleSelect: (file: File) => void; handleSelectAll: () => void; onRemoveFiles: () => void; }; export declare function FileList({ fileList, selectedFiles, onToggleSelect, handleSelectAll, onRemoveFiles, }: FilesProps): React.JSX.Element; export {};