/** * CLI Command: lex check * * Wrapper around policy/check for user-friendly policy violation reporting. */ export interface CheckOptions { json?: boolean; ticket?: string; } /** * Execute the 'lex check' command * Checks scanner output against policy and reports violations */ export declare function check(mergedJsonPath: string, policyJsonPath: string, options?: CheckOptions): Promise;