import { Vue as _Vue } from 'vue-class-component'; import type { AriaAttributes, VueRenderAttributes } from './jsx'; import { type VNode } from 'vue'; export declare function h(type: any, props?: any, ...args: any[]): VNode; export { VueConstructor } from 'vue-class-component'; export declare class Vue

extends _Vue { _jsxProps: AriaAttributes & P & VueRenderAttributes; constructor(_opts?: any, _props?: P); } /** * Modify the given object to set it as non reactive. * * This helps saving memory by not adding an observer to all data. */ export declare function nonReactive(value: any): any;