import type { RecursiveAction } from "../../domain/recursive/action-bundle.js"; import type { RecursivePromotionProposal } from "../../domain/recursive/promotion-proposal.js"; export interface ProposePromotionInput { workspaceRoot: string; sessionId: string; action: Extract; } export declare function proposeRecursivePromotion(input: ProposePromotionInput): Promise<{ proposal: RecursivePromotionProposal; artifactRef: string; }>; //# sourceMappingURL=propose-promotion.d.ts.map