import { ASTBase, ASTBaseOptions } from './base'; export interface ASTBinaryExpressionOptions extends ASTBaseOptions { operator: string; left: ASTBase; right: ASTBase; } export declare class ASTBinaryExpression extends ASTBase { operator: string; left: ASTBase; right: ASTBase; constructor(options: ASTBinaryExpressionOptions); toString(): string; clone(): ASTBinaryExpression; }