import type { RseConfig } from "@reliverse/cfg";
import type { DeploymentService } from "../../../../sdk-types.js";
import type { InstanceGithub } from "../../../../utils/instanceGithub.js";
import type { InstanceVercel } from "../../../../utils/instanceVercel.js";
import type { ReliverseMemory } from "../../../../utils/schemaMemory.js";
export declare function selectDeploymentService(config: RseConfig): Promise<DeploymentService>;
export declare function deployProject(githubInstance: InstanceGithub, vercelInstance: InstanceVercel, vercelToken: string, githubToken: string, skipPrompts: boolean, projectName: string, config: RseConfig, projectPath: string, primaryDomain: string, memory: ReliverseMemory, deployMode: "new" | "update", githubUsername: string): Promise<{
    deployService: DeploymentService | "none";
    primaryDomain: string;
    isDeployed: boolean;
    allDomains: string[];
}>;
