/** * Parser Command - drift parser * * Show parser information and diagnostics for drift's language parsers. * Displays which parsers are available, their capabilities, and allows * testing parsing on specific files. * * @requirements Phase 4 - CLI Integration */ import { Command } from 'commander'; export interface ParserOptions { /** Test parsing a specific file */ test?: string; /** Output format */ format?: 'text' | 'json'; /** Show verbose output */ verbose?: boolean; } export declare const parserCommand: Command; //# sourceMappingURL=parser.d.ts.map