export type VerificationCommandKind = 'check' | 'diff-review'; /** Recognize direct check invocations, never keywords inside arbitrary shell code. */ export declare function classifyVerificationCommand(command: string): VerificationCommandKind | undefined;