import type { Column } from '../DataTable/hooks/useTable/types.js'; /** * 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;