/** * Approve Command - drift approve * * Approve a discovered pattern to enforce it. * * MIGRATION: Now uses IPatternService for pattern operations. * * @requirements 29.5 */ import { Command } from 'commander'; export interface ApproveOptions { /** Approve all patterns matching a category */ category?: string; /** Skip confirmation prompt */ yes?: boolean; /** Enable verbose output */ verbose?: boolean; /** Project root directory */ root?: string; /** Auto-approve patterns with ≥90% confidence */ auto?: boolean; /** Custom confidence threshold for auto-approve (default: 0.90) */ threshold?: number; /** Dry run - show what would be approved */ dryRun?: boolean; } export declare const approveCommand: Command; //# sourceMappingURL=approve.d.ts.map