import React from 'react'; interface SortableHeaderProps { field: string; title: string; onSort?: (field: string) => void; showSortIcon?: boolean; currentSortField?: string; currentSortDirection?: 'asc' | 'desc'; } export declare const SortableHeader: React.FC; export {};