/**
 * 列位置
 */
export declare enum ColumnPosition {
    /**
     * 固定列左侧
     */
    Left = -1,
    /**
     * 固定列
     */
    Fixed = 0,
    /**
     * 固定列右侧
     */
    Right = 1
}
