import { Mode } from '../../../model/module'; import Tensor, { DType } from '../../../types'; import { OnnxNode } from '../../node'; import { Attributes, Constants } from '../../types'; export declare abstract class BinaryNode extends OnnxNode { protected name: string; constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, name: string, mode: Mode); abstract compute(a: Tensor, b: Tensor): Tensor; forward(inputs: Tensor[]): Promise[]>; getType(): string; delete(): void; }