import { ColumnProps } from './TableBodyColumn'; export type ToggleSort = { toggleSort: (() => void) | null; }; export declare const TableHeaderColumn: ({ children, value, toggleSort }: ColumnProps & ToggleSort) => import('./react/jsx-runtime.js').JSX.Element;