import type { Manifest } from "../types/index.js"; export interface ClonedRegistry { path: string; url: string; manifest: Manifest; cleanup: () => Promise; } export declare function cloneRegistry(repository: string, options?: { verbose?: boolean; }): Promise; export declare function loadLocalRegistry(registryPath: string): Promise; //# sourceMappingURL=cloner.d.ts.map