import { Ref } from 'vue'; export declare const PERSISTENT_REF_METADATA: unique symbol; export type PersistentRefOptions = { version: string; migrate?: (oldData: any, oldVersion: string) => T; }; export type PersistentRef = Ref & { [PERSISTENT_REF_METADATA]: PersistentRefOptions; }; export declare function persistentRef(value: T, options?: PersistentRefOptions): PersistentRef;