import type ColumnDef from "../../types/ColumnDef"; /** * Calculate the maximum allowable width for a header based on container constraints */ export declare const calculateMaxHeaderWidth: ({ header, headers, collapsedHeaders, }: { header: ColumnDef; headers: ColumnDef[]; collapsedHeaders?: Set; }) => number;