import type { Ref } from 'vue'; export declare function getRealValue(item: Ref | T): T; /** * Taken from https://github.com/piotrwitek/utility-types/blob/master/src/utility-types.ts#L158 */ export type Class = new (...args: any[]) => T; export type MaybeRef = Ref | T;