/** * CLI Command: decisions — Query decision log. * * Supports two modes: * agentboardroom decisions [filters] (positional project) * agentboardroom decisions --project (flag-based, legacy) * * Filters: * --author Filter by author * --type Filter by decision type * --phase Show decisions from specific phase * --since Show decisions after date (ISO-8601) * --challenged Show only challenged decisions * --status Filter by status * --format table|json Output format (default: table) * --limit Max results (default: 20, table only) */ export interface DecisionsOptions { project?: string; status?: string; type?: string; author?: string; phase?: number; since?: string; challenged?: boolean; format?: 'table' | 'json'; limit?: number; dir?: string; json?: boolean; } export declare function decisionsCommand(options: DecisionsOptions): void; //# sourceMappingURL=decisions.d.ts.map