import { PropType } from 'vue'; export declare const polygonEditorProps: { closable: { type: BooleanConstructor; default: boolean; }; mapType: { type: NumberConstructor; default: number; }; zoom: { type: NumberConstructor; default: number; }; size: { type: StringConstructor; default: undefined; }; placeholder: { type: StringConstructor; default: string; }; detail: { type: BooleanConstructor; default: boolean; }; disabled: { type: BooleanConstructor; default: boolean; }; modelValue: { type: PropType>; default: () => {}; }; /** 是否计算并返回面积信息(亩),默认 false */ withArea: { type: BooleanConstructor; default: boolean; }; /** 是否显示面积调试面板,默认 false */ withAreaDebug: { type: BooleanConstructor; default: boolean; }; };