import { Deferred } from '@vunk/core/shared/utils-promise'; declare class DeferredWithValue extends Deferred { _ref: import("vue").ShallowRef; get value(): T; constructor(); } export declare const useDeferred: () => DeferredWithValue; export {};