import type { PikkuRPC } from '../sdk/pikku-rpc.gen.js'; /** * Resolve a stage UUID from (projectId, branch) via the `listStages` RPC. * The stageId-based read RPCs (listDeployments, listDeploymentWorkers, * getStageDatabaseSchema) need a UUID, but the CLI only knows the branch. */ export declare function resolveStageId(rpc: PikkuRPC, projectId: string, branch: string): Promise;