import type { ReliverseMemory } from "../../../../utils/schemaMemory.js";
/**
 * Clones a repository to a temporary directory and copies specified files
 */
export declare function archiveExistingRepoContent(repoUrl: string, projectPath: string): Promise<{
    success: boolean;
    externalRseConfig?: string;
}>;
export declare function handleExistingRepoContent(memory: ReliverseMemory, repoOwner: string, repoName: string, projectPath: string): Promise<{
    success: boolean;
    externalRseConfig?: string;
}>;
