import React from "react"; interface HeaderProps { columns: any[]; onSort?: (column: any) => void; onFilter?: (filterData: Record) => void; sortField?: string; sortOrder?: string; selectRow?: any; currFilters?: Record; onExternalFilter?: (column: any, filterType: string) => (value: any) => void; globalSortCaret?: (order: string, column: any) => React.ReactNode; className?: string; wrapperClasses?: string; expandRow?: any; filterPosition?: string; } declare const Header: React.FC; export default Header;