import { type PlanDocument, type PlanEvent, type WorkflowGuidance } from "@veewo/claw-core"; export declare function buildCodexHostActions(result: { planStatus: string; previousPlan?: PlanDocument; plan?: PlanDocument; workflowGuidance: WorkflowGuidance; events?: PlanEvent[]; }, options?: { forceProjectionSync?: boolean; actionIdPrefix?: string; }): Array>; export declare function buildCodexPlanProjection(plan: PlanDocument, planStatus: string): Array<{ step: string; status: "pending" | "in_progress" | "completed"; }>;