/// /// import { JsxNode, PublicLitElement as LitElement, TargetedEvent } from '@arcgis/lumina'; import { ActiveTool } from '../../interfaces/interfaces'; export declare class InstantAppsMeasurement extends LitElement { /** * A reference to the MapView or SceneView * * @required */ view: __esri.MapView | __esri.SceneView; /** Choose which unit will be used for the area tool by default */ areaUnit?: __esri.AreaUnit; /** Choose which unit will be used for the distance tool by default */ linearUnit?: __esri.LengthUnit; /** Choose which formats to include as options while converting coordinates */ coordinateFormat?: string; /** * Determine the tool that will be open on load * * @required */ activeToolType: ActiveTool; /** * When true the measure widget is closable * * @default false */ closable: boolean; /** * Emits when there is an active measure tool * to allow app devs to disable other tools/popups when * tools are active . */ readonly measureActive: TargetedEvent; }