/**
 * Lint Command Handler
 *
 * Routes `aiwg lint` to the lint CLI module.
 *
 * @issue #810
 */
import type { CommandHandler } from './types.js';
/**
 * Handler for lint command
 *
 * Lint AIWG-managed document sets against declarative rule sets.
 *
 * Usage:
 *   aiwg lint .aiwg/research/
 *   aiwg lint .aiwg/research/ --ruleset research
 *   aiwg lint --list-rulesets
 *   aiwg lint --list-rules research
 *   aiwg lint .aiwg/ --format json --ci --fail-on warn
 *   aiwg lint .aiwg/research/ --dry-run
 */
export declare const lintHandler: CommandHandler;
//# sourceMappingURL=lint.d.ts.map