import { Mode } from '../../../model/module'; import Tensor, { Activation, DType } from '../../../types'; import { OnnxNode } from '../../node'; import { Attributes, Constants } from '../../types'; export declare class ConvNode extends OnnxNode { private group; private dilations?; private pads?; private strides?; kernel?: Tensor; bias?: Tensor; private activation; constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, mode: Mode, kernel?: Tensor, bias?: Tensor, activation?: Activation); forward(inputs: Tensor[]): Promise[]>; getDilations(rank: number): any[]; getPads(rank: number): any[]; getStrides(rank: number): any[]; getType(): string; toCPU(): Promise; toWASM(): Promise; toGPU(): Promise; delete(): void; }