import { Lexeme } from "../models/Lexeme";
import { ValueComponent } from "../models/ValueComponent";
export declare class CommandExpressionParser {
    static parseFromLexeme(lexemes: Lexeme[], index: number): {
        value: ValueComponent;
        newIndex: number;
    };
    private static parseModifierUnaryExpression;
    private static parseCaseExpression;
    private static parseCaseWhenExpression;
    private static parseSwitchCaseArgument;
    private static isCommandWithValue;
    private static parseCaseConditionValuePair;
    private static parseArrayExpression;
}
