import { ESSceneObject, PickedInfo, PointEditing, PositionsCenter, PositionsEditing } from "vtxf-xe2/dist-node/xe2-base-objects"; import { Event, Listener, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SlopResultType } from "./computeSlope"; export declare class CzmSlope2 extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; show: boolean; allowPicking: boolean; positions: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number][] | undefined>; editing: boolean; pointEditing: boolean; results: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; gridSize: number | null; autoGridEstNum: number; calculating: boolean; resultColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; }; get json(): JsonType; set json(value: JsonType); private _pickedEvent; get pickedEvent(): Event<[PickedInfo]>; private _flyToEvent; get flyToEvent(): Listener<[number | undefined]>; flyTo(duration?: number): void; private _sPositionsEditing; get sPositionsEditing(): PositionsEditing; private _sPointEditing; get sPointEditing(): PointEditing; private _positionsCenter; get positionsCenter(): PositionsCenter; private _geoPolygon; get geoPolygon(): void; private _resultDirs; constructor(id?: string); calculateGridSize(): boolean; clearResults(): void; private _calculatingProgress; get calculatingProgress(): number; get calculatingProgressChanged(): Listener<[number, number]>; getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace CzmSlope2 { const createDefaultProps: () => { execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; show: boolean; allowPicking: boolean; positions: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number][] | undefined>; editing: boolean; pointEditing: boolean; results: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; gridSize: number | null; autoGridEstNum: number; calculating: boolean; resultColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; }; } export interface CzmSlope2 extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};