import { Ref, UnwrapRef, ShallowUnwrapRef, ComputedRef } from '@vue/reactivity' export function $ref(arg: T | Ref): UnwrapRef export function $ref() {} declare const ComputedRefMarker: unique symbol type ComputedRefValue = T & { [ComputedRefMarker]?: any } export function $computed(getter: () => T): ComputedRefValue export function $computed() {} export function $fromRefs(source: T): ShallowUnwrapRef export function $fromRefs() { return null as any } export function $raw(value: ComputedRefValue): ComputedRef export function $raw(value: T): Ref export function $raw() { return null as any }