import { ESSceneObject, PickedInfo } from "xbsj-xe2/dist-node/xe2-base-objects"; import { Event, Listener, PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from "xbsj-xe2/dist-node/xe2-base-utils"; import { SceneObjectKey } from "xbsj-xe2/dist-node/xe2-utils"; import { LineCapType, LineJoinType } from "../base"; export declare class OlArrowsLineString extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean | undefined; positions: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number][] | undefined>; editing: boolean | undefined; pointEditing: boolean | undefined; allowPicking: boolean | undefined; doubleArrow: boolean | undefined; solidArrow: boolean | undefined; color: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | undefined>; lineCap: LineCapType | undefined; lineJoin: LineJoinType | undefined; lineDash: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; lineDashOffset: number | undefined; miterLimit: number | undefined; width: number | undefined; zIndex: number | undefined; arrowsAngle: number | undefined; arrowsLength: number | undefined; execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; get json(): JsonType; set json(value: JsonType); private _pickedEvent; get pickedEvent(): Event<[PickedInfo]>; private _flyToEvent; get flyToEvent(): Listener<[number | undefined]>; flyTo(duration?: number): void; constructor(id?: SceneObjectKey); static lineCapTypeEnums: [string, string][]; static lineJoinTypeEnums: [string, string][]; static description: { color: string; lineCap: string; lineJoin: string; lineDash: string; lineDashOffset: string; miterLimit: string; width: string; }; getProperties(language?: string): import("xbsj-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace OlArrowsLineString { const createDefaultProps: () => { show: boolean | undefined; positions: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number][] | undefined>; editing: boolean | undefined; pointEditing: boolean | undefined; allowPicking: boolean | undefined; doubleArrow: boolean | undefined; solidArrow: boolean | undefined; color: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | undefined>; lineCap: LineCapType | undefined; lineJoin: LineJoinType | undefined; lineDash: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; lineDashOffset: number | undefined; miterLimit: number | undefined; width: number | undefined; zIndex: number | undefined; arrowsAngle: number | undefined; arrowsLength: number | undefined; execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; } export interface OlArrowsLineString extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};