import { Type } from "igniteui-react-core";
/**
 * Describes available locations of the axis labels in the chart.
 */
export declare enum ZoomCoercionMode {
    /**
     * Zoom coercion mode is decided by the component.
     */
    Auto = 0,
    /**
     * The zoom window is constrained to the axis bounds.
     */
    AxisConstrained = 1,
    /**
     * The zoom window is unconstrained by the axis bounds.
     */
    Unconstrained = 2
}
/**
 * @hidden
 */
export declare let ZoomCoercionMode_$type: Type;
