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