import { IShowcaseObject, UNITS } from "../../../types"; import { Vector3 } from "../../../../bundle/sdk"; export declare let isAdjust: boolean; export declare function renderActionSettingsPane(): HTMLDivElement; export declare function toggleActionSettings(visible?: boolean): void; export declare function toggleActionSettingsDropdown(id: string): void; export declare function actionSettingsSelectOption(element: HTMLElement, id: string): void; export declare function initSettingsValues(): void; export declare function toggleCalibrateBasepoint(): Promise; export declare function displayConvertedCoordinates(payload: any): void; export declare function getCoordinateSystem(): string; export declare function setCoordinateSystem(value: string): void; export declare function getScaleFactor(): string; export declare function setScaleFactor(value: string): void; export declare function getMeasurementUnit(): UNITS.MILLIMETER | UNITS.CENTIMETER | UNITS.METER | UNITS.FOOT | UNITS.INCH; export declare function setMeasurementUnit(value: UNITS.MILLIMETER | UNITS.CENTIMETER | UNITS.METER | UNITS.FOOT | UNITS.INCH): void; export declare function getRotationUnit(): UNITS.DEGREE | UNITS.RADIAN; export declare function setRotationUnit(value: UNITS.DEGREE | UNITS.RADIAN): void; export declare function setTempCoordinateSystem(value: string): void; export declare function getTempCoordinateSystem(): string; export declare function setTempScaleFactor(value: string): void; export declare function getTempScaleFactor(): string; export declare function setTempMeasurementUnit(value: UNITS.MILLIMETER | UNITS.CENTIMETER | UNITS.METER | UNITS.FOOT | UNITS.INCH): void; export declare function getTempMeasurementUnit(): UNITS.MILLIMETER | UNITS.CENTIMETER | UNITS.METER | UNITS.FOOT | UNITS.INCH; export declare function setTempRotationUnit(value: UNITS.DEGREE | UNITS.RADIAN): void; export declare function getTempRotationUnit(): UNITS.DEGREE | UNITS.RADIAN; export declare function setBasepoint(value: Vector3): void; export declare function getBasepoint(): Vector3; export declare function getMPBasepoint(): Vector3; export declare function setTempBasepoint(value: Vector3): void; export declare function getTempBasepoint(): Vector3; export declare function getBasepointObjectPayload(): IShowcaseObject; export declare function setBasepointObjectPayload(payload: IShowcaseObject): void;