import type { TableColumn } from '../base'; import type { TableColumnPinLocation } from '../../table/types'; type PinnableTableColumn = Pick; type PinnableTableColumnConstructor = abstract new (...args: any[]) => PinnableTableColumn; export declare function mixinPinnableColumnAPI(base: TBase): (abstract new (...args: any[]) => { pinLocation?: TableColumnPinLocation; /** @internal */ pinLocationChanged(): void; readonly columnInternals: import("../base/models/column-internals").ColumnInternals>; }) & TBase; export {};