import { ReactVarProperty } from 'earthsdk3'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { property: ReactVarProperty; customName?: string; isReset?: boolean; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { paste: (...args: any[]) => void; reset: (...args: any[]) => void; }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{ onPaste?: ((...args: any[]) => any) | undefined; onReset?: ((...args: any[]) => any) | undefined; }>, { isReset: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };