import { Ref, UnwrapRef, ShallowUnwrapRef, ComputedRef, WritableComputedOptions, DebuggerOptions, WritableComputedRef } from '@vue/reactivity' declare const RefMarker: unique symbol type RefValue = T & { [RefMarker]?: any } export function $ref(arg?: T | Ref): RefValue> export function $ref() {} export function $shallowRef(arg?: T): RefValue export function $shallowRef() {} declare const ComputedRefMarker: unique symbol type ComputedRefValue = T & { [ComputedRefMarker]?: any } declare const WritableComputedRefMarker: unique symbol type WritableComputedRefValue = T & { [WritableComputedRefMarker]?: any } export function $computed( getter: () => T, debuggerOptions?: DebuggerOptions ): ComputedRefValue export function $computed( options: WritableComputedOptions, debuggerOptions?: DebuggerOptions ): WritableComputedRefValue export function $computed() {} export function $fromRefs(source: T): ShallowUnwrapRef export function $fromRefs() { return null as any } export function $raw>( value: T ): T extends ComputedRefValue ? ComputedRef : never export function $raw( value: WritableComputedRefValue ): WritableComputedRef export function $raw(value: RefValue): Ref export function $raw() { return null as any }