import { CstParser } from "chevrotain";
export declare function lex(input: string): import("chevrotain").ILexingResult;
export declare class CommandParser extends CstParser {
    constructor();
    commandExpression: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
    commandName: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
    commandOption: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
    commandOptionKey: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
    commandOptionValue: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
}
export declare const commandParser: CommandParser;
