/** * Consistency command - Check naming conventions and architectural consistency */ import { Command } from 'commander'; import type { Severity } from '@aiready/core'; interface ConsistencyOptions { naming?: boolean; patterns?: boolean; minSeverity?: Severity; include?: string; exclude?: string; output?: string; outputFile?: string; score?: boolean; } /** * Define the consistency command. * * @param program - Commander program instance */ export declare function defineConsistencyCommand(program: Command): void; /** * Action handler for consistency analysis. */ export declare function consistencyAction( directory: string, options: ConsistencyOptions ): Promise; export {}; //# sourceMappingURL=consistency.d.ts.map