/** * Retro capability — enforce retrospective checks (Fridays or when missed). */ import type { WatchCapability, WatchContext, PreflightResult, CapabilityResult } from '../types.js'; export declare class RetroCapability implements WatchCapability { readonly name = "retro"; readonly description = "Enforce retrospective checks (Fridays or when missed >7 days)"; readonly configShape: "boolean"; readonly requires: string[]; readonly phase: "housekeeping"; preflight(_context: WatchContext): Promise; execute(context: WatchContext): Promise; } //# sourceMappingURL=retro.d.ts.map