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