import { Mode } from '../../../model/module'; import Tensor, { DType } from '../../../types'; import { Attributes, Constants } from '../../types'; import { ReduceNode } from './reduceNode'; export declare class ReduceSumSquareNode extends ReduceNode { constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, mode: Mode); calc(input: Tensor): Tensor; }