import { Dataset } from "@dclimate/jaxray"; import type { IPFSELEMENTS_INTERFACE } from "@dclimate/jaxray"; import type { ShardReadMode } from "../types.js"; export type IpfsElements = IPFSELEMENTS_INTERFACE; export interface OpenDatasetOptions { gatewayUrl?: string; ipfsElements?: IpfsElements; zarrGroup?: string; shardReadMode?: ShardReadMode; } export declare function normalizeZarrGroup(group?: string): string | undefined; export declare function openDatasetFromCid(cid: string, options?: OpenDatasetOptions): Promise; //# sourceMappingURL=open-dataset.d.ts.map