import { Operand } from '../../../shared/domain'; import { OperandBuilder } from '../../domain'; export declare class OperandBuild { private builders; constructor(); add(key: string, builder: OperandBuilder): OperandBuild; get(key: string): OperandBuilder; build(expression: string, key?: string): Operand; }