import type { Ref, UnwrapRef } from 'vue';
export declare function useDataset<TData>(id: string, options?: {
    selectors?: string[];
}): {
    data: Ref<UnwrapRef<TData> | null>;
    isReady: Ref<boolean>;
    ready: Promise<void>;
};
