import { Context } from '../context/context';
export declare class Expression {
    private operands;
    private postfix;
    constructor(str?: string);
    evaluate(ctx: Context): Generator<string | number | boolean | object, any, any>;
    value(ctx: Context): Generator<Generator<string | number | boolean | object, any, any>, any, any>;
    private evaluateOnce;
}
