import { Mode } from '../../../model/module'; import Tensor, { DType } from '../../../types'; import { Attributes, Constants } from '../../types'; import { BinaryNode } from './binaryNode'; export declare class AddNode extends BinaryNode { constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, mode: Mode); compute(a: Tensor, b: Tensor): Tensor; }