import type { OperatorEnum } from './operator-enum';
export interface BinaryOperation {
    'left'?: string | null;
    'operator': OperatorEnum;
    'right'?: string | null;
}
