import { ResultType } from '../common/data-type';
/**
 * @public
 * @class GizmoController
 */
declare class GizmoController {
    private apiClassName;
    private obj;
    /**
     * @constructor
     * @param {any} obj
     */
    constructor(obj: any);
    /**
     * @public
     * @async
     * @function SetGizmoState
     * @param {string} gizmoState (optional) default value is 'Disable'
     * @returns {Promise<ResultType>}
     */
    SetGizmoState(gizmoState?: string): Promise<ResultType>;
}
export default GizmoController;
