import { Column } from '@tanstack/react-table'; export interface DataTableColumnHeaderProps { column: Column; title: string; /** When `false`, only affects this label's styling — the click handler and * sort arrow are driven by the column def's own `enableSorting` (set that * to `false` too if this column truly shouldn't be sortable). */ sortable?: boolean; className?: string; } /** * Title label for a `DataTable` column's `header` render function. * * `DataTable`'s own `` already renders the sort arrow and owns the click/ * keyboard handling for any column with `enableSorting` (default `true`) — * this component only renders the title text, so composing it inside * `header: ({ column }) => ` * does not double up the arrow or the click zone. */ export declare function DataTableColumnHeader({ title, sortable, className, }: DataTableColumnHeaderProps): import("react").JSX.Element; //# sourceMappingURL=DataTableColumnHeader.d.ts.map