import { Type } from "igniteui-react-core";
/**
 * Describes available types of UI response to user panning and zooming operations.
 */
export declare enum WindowResponse {
    /**
     * Defer the view update until after the user action is complete.
     */
    Deferred = 0,
    /**
     * Update the view immediately while the user action is happening.
     */
    Immediate = 1
}
/**
 * @hidden
 */
export declare let WindowResponse_$type: Type;
