import { Token } from "./token-type";
export declare class ExpressionParser {
    private literalCheck;
    private tokens;
    constructor(tokens: Map<Token, string>, litCheck?: (item: any, entities: any) => boolean);
    evaluate: (expression: string, entities: (string | number)[]) => any;
}
