import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ColumnPinning` - Defines the pinning position of a table column. * * @public */ export declare const ColumnPinning: { /** * `none` - Column is not pinned. */ readonly None: "none"; /** * `left` - Column is pinned to the left side. */ readonly Left: "left"; /** * `right` - Column is pinned to the right side. */ readonly Right: "right"; }; /** * @public */ export type ColumnPinning = ValuesOf; //# sourceMappingURL=ColumnPinning.d.ts.map