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