export declare function useFileSelection(fileArray: File[], onChange: (files: FileList | null) => void): { selectedFiles: Set; handleToggleSelect: (file: File) => void; handleRemoveSelectedFiles: () => void; handleSelectAll: () => void; };