File size: 358 Bytes
369fac9
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { DefineComponent } from 'vue';
import { MountingOptions } from './types';
export declare function createInstance(inputComponent: DefineComponent<{}, {}, any, any, any, any>, options?: MountingOptions<any> & Record<string, any>): {
    app: import("vue").App<Element>;
    props: Record<string, unknown>;
    componentRef: import("vue").Ref<null>;
};