import type { PropType } from "vue"; export declare const propsTypes: { bounds: { type: ArrayConstructor; required: true; }; bubble: { type: BooleanConstructor; default: boolean; }; cursor: { type: StringConstructor; }; strokeColor: { type: StringConstructor; }; strokeOpacity: { type: NumberConstructor; }; strokeWeight: { type: NumberConstructor; }; fillColor: { type: StringConstructor; }; fillOpacity: { type: NumberConstructor; }; draggable: { type: BooleanConstructor; default: boolean; }; extData: { type: ObjectConstructor; default: () => null; }; strokeStyle: { type: PropType<"solid" | "dashed">; validator: (value: string) => boolean; }; strokeDasharray: { type: ArrayConstructor; }; editable: { type: BooleanConstructor; default: boolean; }; editOptions: { type: ObjectConstructor; }; } & { visible: import("../../../utils/buildHelper").IPropOptions; zIndex: import("../../../utils/buildHelper").IPropOptions; reEventWhenUpdate: import("../../../utils/buildHelper").IPropOptions; extraOptions: import("../../../utils/buildHelper").IPropOptions; };