import { Type } from "igniteui-webcomponents-core";
/**
 * Indicates the built in easing type to use for an animation.
 */
export declare enum GridEasingFunctionType {
    /**
     * Use linear easing.
     */
    Linear = 0,
    /**
     * Use cubic in/out easing.
     */
    CubicInOut = 1,
    /**
     * Use exponential in/out easing.
     */
    ExponentialInOut = 2,
    /**
     * Use circle in/out easing.
     */
    CircleInOut = 3
}
/**
 * @hidden
 */
export declare let GridEasingFunctionType_$type: Type;
