import type { TableColumn } from '../base'; type SizedTableColumn = Pick; type SizedTableColumnConstructor = abstract new (...args: any[]) => SizedTableColumn; export declare function mixinFractionalWidthColumnAPI(base: TBase): (abstract new (...args: any[]) => { fractionalWidth?: number | null; minPixelWidth?: number | null; fractionalWidthChanged(): void; minPixelWidthChanged(): void; readonly columnInternals: import("../base/models/column-internals").ColumnInternals>; }) & TBase; export {};