import { Type } from "igniteui-webcomponents-core"; /** * Indicates the direction a column should be sorted in. */ export declare enum ColumnSortDirection { /** * Not sort applied. */ None = 0, /** * Sort is ascending. */ Ascending = 1, /** * Sort is descending. */ Descending = 2 } /** * @hidden */ export declare let ColumnSortDirection_$type: Type;