/** * Constraints Command - drift constraints * * Manage architectural constraints learned from the codebase. * Constraints are invariants that MUST be satisfied by code. */ import { Command } from 'commander'; export interface ConstraintsOptions { format?: 'text' | 'json'; verbose?: boolean; category?: string; status?: string; limit?: number; minConfidence?: number; } export declare function createConstraintsCommand(): Command; //# sourceMappingURL=constraints.d.ts.map