import { ReactivePropsToNativePropsAndChanged } from "xbsj-xe2/dist-node/xe2-base-utils"; import { SMGeoPlottingBase } from "../SMGeoPlottingBase"; /** * 扇形 * 使用圆心和圆上两点绘制出一个扇形 */ export declare class SMGeoSector extends SMGeoPlottingBase { static readonly type: string; get typeName(): string; constructor(id?: string); getProperties(language?: string): import("xbsj-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace SMGeoSector { const createDefaultProps: () => { 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; show: boolean; fill: boolean; allowPicking: boolean; ground: boolean; outline: boolean; outlineColor: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; outlineWidth: number; color: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; editing: boolean; pointEditing: boolean; positions: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number][] | undefined>; depth: number; depthTest: boolean; viewDistanceRange: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number] | undefined>; viewDistanceDebug: boolean; direction: boolean | undefined; }; const propNames: string[]; } export interface SMGeoSector extends ReactivePropsToNativePropsAndChanged> { }