import { FunctionN } from 'fp-ts/lib/function'; import { Ref } from 'vue'; export declare function useProxy(ref: Ref, onUpdate?: Ref | undefined> | FunctionN<[T], void>): Proxy; export interface Proxy { value: Ref; }