import { View } from '@nativescript/core'; import { Ref, ShallowRef } from 'nativescript-vue'; type NativeElement = { nativeView?: T; $el?: { nativeView: T; }; }; export type ViewRef = T | Ref> | Readonly>>; export {};