import type { AdrRecord, AdrStatus, OperationPlan, SprintFile } from '../types'; /** * Tool-owned ADR append so agents do not hand-edit free-form ADR objects (post-mortem #2 F3). * * kyro adr add --title ... --context ... --decision ... --consequence ... --alternative ... */ export declare function runAdrCommand(rawArgs: string[]): void; export interface AdrAddArgs { id: string | null; title: string; status: AdrStatus; date: string | null; context: string; decision: string; consequences: string[]; alternatives: string[]; scope: string | null; dryRun: boolean; help: boolean; } export declare function buildAdrAddPlan(scope: string, args: AdrAddArgs): { sprint: SprintFile; plan: OperationPlan[]; adr: AdrRecord; }; //# sourceMappingURL=adr.d.ts.map