export interface CloneResult { repo: string; status: 'done' | 'failed' | 'skipped'; message?: string; } export interface PeerRepoClonerOptions { repos: string[]; token?: string; workspacesDir?: string; } export declare function clonePeerRepos(options: PeerRepoClonerOptions): Promise; //# sourceMappingURL=peer-repo-cloner.d.ts.map