import type { Column, RowData, TableFeatures } from '@tanstack/react-table'; /** * Gets the header's display value. * @param column - The column object. * @returns the label of the column header: string if available, or the label if it's a custom header; otherwise falls back to the column id. * @internal */ export declare function getColumnLabel(column: Column): string;