import type { DataTableDisplayColumnDef, DataTableRowData } from '../../public.api.js'; /** * Determines the minimum width for a column. */ export declare function getColumnMinWidth(columnDef: DataTableDisplayColumnDef): number | undefined; /** * Typeguard function to make sure a passed width is a fraction width. * @internal */ export declare function isFractionWidth(width?: number | `${number}fr` | 'auto' | 'content' | { type: 'auto' | 'content'; maxWidth?: number; }): width is `${number}fr`; /** * Typeguard function to make sure a passed width is an extended config. * @internal */ export declare function isWidthExtendedConfig(width?: number | `${number}fr` | 'auto' | 'content' | { type: 'auto' | 'content'; maxWidth?: number; }): width is { type: 'auto' | 'content'; maxWidth?: number; }; //# sourceMappingURL=width-utils.d.ts.map