import type { RseConfig } from "@reliverse/cfg";
import type { ReliverseMemory } from "../../../../../utils/schemaMemory.js";
/**
 * Main function to show the clone project menu and handle user selection.
 */
export declare function showCloneProjectMenu({ isDev, cwd, config, memory, }: {
    isDev: boolean;
    cwd: string;
    config: RseConfig;
    memory: ReliverseMemory;
}): Promise<void>;
