import { Type } from "igniteui-webcomponents-core"; /** * Enumeration defining different positions a column can be fixed against. */ export declare enum PinnedPositions { /** * The column is not fixed. */ None = 0, /** * The column is pinned against the left side of the grid. */ Left = 1, /** * The column is pinned against the right side of the grid. */ Right = 2 } /** * @hidden */ export declare let PinnedPositions_$type: Type;