import { ReactElement } from 'react'; import { useBulkActions } from '../../../hooks/useBulkActions'; import { SortDir, SortKey } from '../../../hooks/useSorting'; interface FileBrowserHeaderProps { isSearchMode: boolean; bulk: ReturnType; sortKey: SortKey; sortDir: SortDir; onSortName: () => void; onSortSize: () => void; onSortDate: () => void; onSortDrive: () => void; onClearSort: () => void; } export declare function FileBrowserHeader({ isSearchMode, bulk, sortKey, sortDir, onSortName, onSortSize, onSortDate, onSortDrive, onClearSort, }: FileBrowserHeaderProps): ReactElement; export {};