import { Context } from '../context/context'; export declare class Expression { private operands; private postfix; constructor(str?: string); evaluate(ctx: Context): IterableIterator; value(ctx: Context): IterableIterator; }