/** * Local filesystem-backed registry client. * * All operations read/write files relative to a registry root using the * layout: `/extensions/@///`. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type * as FileSystem from "effect/FileSystem"; import type * as Path from "effect/Path"; import type { RegistryClient } from "./client.js"; /** * Creates a local filesystem-backed registry client. * * All operations read/write files relative to `registryRoot` using the * registry layout: `/extensions/@///`. * * @param registryRoot - Absolute path to the registry root directory * * @experimental This API is unstable and may change without notice. */ export declare const createLocalRegistryClient: (registryRoot: string, fs: FileSystem.FileSystem, path: Path.Path) => RegistryClient; //# sourceMappingURL=local-client.d.ts.map