export interface VueRef { value: T; } export interface VueRuntime { defineComponent(options: Record): unknown; h(type: string, props: Record): unknown; ref(value: T): VueRef; onMounted(callback: () => void): void; onBeforeUnmount(callback: () => void): void; } export declare function createVueSkyComponent(vue: VueRuntime): unknown; //# sourceMappingURL=vue.d.ts.map