import { Mode } from '../../model/module'; import Tensor, { DType } from '../../types'; import { OnnxNode } from '../node'; import { Attributes, Constants } from '../types'; export declare class BatchNormalizationNode extends OnnxNode { private epsilon; private momentum; epsTensor: Tensor; constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, mode: Mode); forward(inputs: Tensor[]): Promise[]>; getType(): string; toCPU(): Promise; toWASM(): Promise; toGPU(): Promise; delete(): void; }