import type { InteractionRecords } from './interaction-records.js'; import type { PendingPlan, PlanApprovals } from './plan-approvals.js'; export type PlanResponseOutcome = 'resolved' | 'already-resolved' | 'not-found'; export declare function deliverPlanResponse(requestId: string, pending: PendingPlan, approved: boolean, feedback?: string): boolean; export declare function respondToPlan(deps: { planApprovals: Pick; interactionRecords: Pick; }, requestId: string, approved: boolean, feedback?: string): PlanResponseOutcome;