import type { UnwrapRef, Ref, WritableComputedRef } from 'vue';
export declare function useAsyncSharedState<INITIAL_VALUE>(key: string, initialValue: INITIAL_VALUE): {
    state: WritableComputedRef<UnwrapRef<INITIAL_VALUE>>;
    isReady: Ref<boolean>;
    ready: Promise<void>;
};
