import { type Ref } from 'vue'; type Refs = { [K in keyof T]: Ref; }; type UnRefs = (object: Refs) => { [K in keyof T]: T[K]; }; export declare const unRefs: UnRefs; export {};