import React from 'react'; import { SortingField, LogicalExpression } from 'fusefx-repositorycontract'; import { TableColors, TableColumn } from '../guifad/_Organisms/Table'; export declare const TableHeader: React.FC<{ columns: TableColumn[]; columnWidths: { [key: string]: number; }; tableColors?: TableColors; sortingParams: SortingField[]; toggleSorting: (key: string) => void; filterByColumn: { [c: string]: LogicalExpression; }; onSetFilterVisible: (field: string, visible: boolean) => void; handleResizeMouseDown: (e: React.MouseEvent, c: TableColumn) => void; refId: string; expandableRowProps?: any; getColumnWidth: (key: string) => number; }>;