import type { RseConfig } from "@reliverse/cfg";
import type { GitModParams } from "../../../../sdk-types.js";
import type { RepoOption } from "../../../../utils/projectRepository.js";
import type { ReliverseMemory } from "../../../../utils/schemaMemory.js";
export declare function handleExistingRepo(params: GitModParams & {
    memory: ReliverseMemory;
    config: RseConfig;
    githubUsername: string;
    selectedTemplate: RepoOption;
}, shouldCommitAndPush: boolean, isDev: boolean): Promise<boolean>;
