/**
 * A linear interpolation scheme.
 *
 * @type {number}
 * @category Math
 */
export const CURVE_LINEAR: number;
/**
 * A smooth step interpolation scheme.
 *
 * @type {number}
 * @category Math
 */
export const CURVE_SMOOTHSTEP: number;
/**
 * Cardinal spline interpolation scheme. For a Catmull-Rom spline, specify a curve tension of 0.5.
 *
 * @type {number}
 * @category Math
 */
export const CURVE_SPLINE: number;
/**
 * A stepped interpolator that does not perform any blending.
 *
 * @type {number}
 * @category Math
 */
export const CURVE_STEP: number;
