import { HoloHash, HoloHashMap } from "@holochain/client"; import { Readable } from "svelte/store"; import { JoinAsyncOptions } from "./async-derived.js"; import { AsyncReadable } from "./async-readable.js"; export type StoreValue = T extends Readable ? U : never; export type AsyncStoreValue = T extends AsyncReadable ? U : never; export declare function joinMap>(holoHashMap: HoloHashMap): Readable>>; export declare function joinAsyncMap>(holoHashMap: HoloHashMap, joinOptions?: JoinAsyncOptions): AsyncReadable>>; //# sourceMappingURL=join-map.d.ts.map