import { Type } from "igniteui-webcomponents-core"; /** * Enumerates the options for how columns animate while moving. */ export declare enum ColumnMovingAnimationMode { /** * Automatically decides on the animation mode to use. */ Auto = 0, /** * No animation is performed. */ None = 1, /** * The cells slide on top of the others to its desired position. */ SlideOver = 2 } /** * @hidden */ export declare let ColumnMovingAnimationMode_$type: Type;