/** * CLI Command: lex check contradictions * * Scans all frames for contradictions and reports them with confidence scores. */ import { type FrameStore } from "../../memory/store/index.js"; export interface CheckContradictionsOptions { /** Filter by module ID */ module?: string; /** Output in JSON format */ json?: boolean; } /** * Execute the 'lex check contradictions' command * Scans all frames for contradictions * * @param options - Command options * @param frameStore - Optional FrameStore for dependency injection */ export declare function checkContradictions(options?: CheckContradictionsOptions, frameStore?: FrameStore): Promise;