/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { FluidDataStoreRegistryEntry, IFluidDataStoreRegistry, NamedFluidDataStoreRegistryEntries } from "@fluidframework/runtime-definitions/internal"; /** * @internal */ export declare class FluidDataStoreRegistry implements IFluidDataStoreRegistry { private readonly map; get IFluidDataStoreRegistry(): IFluidDataStoreRegistry; constructor(namedEntries: NamedFluidDataStoreRegistryEntries); get(name: string): Promise; getSync(name: string): FluidDataStoreRegistryEntry | undefined; } //# sourceMappingURL=dataStoreRegistry.d.ts.map