import type { TeamTask } from "./state.js"; export interface TeamWorkerGoalInstruction { teamName: string; workerName: string; objective: string; taskIds: string[]; taskReferences: Array<{ id: string; subject: string; status: TeamTask["status"]; claimOwner?: string; claimLeasedUntil?: string; }>; } export declare function buildTeamWorkerGoalInstruction(teamName: string, workerName: string, tasks: TeamTask[], options?: { teamStateRoot?: string; objective?: string; }): TeamWorkerGoalInstruction | undefined; export declare function renderTeamWorkerGoalInstruction(instruction: TeamWorkerGoalInstruction | undefined): string; //# sourceMappingURL=goal-workflow.d.ts.map