import { Mode } from '../../../model/module'; import Tensor, { DType } from '../../../types'; import { Attributes, Constants } from '../../types'; import { UnaryNode } from './unaryNode'; export declare class CosNode extends UnaryNode { constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, mode: Mode); compute(x: Tensor): Tensor; } export declare class ACosNode extends UnaryNode { constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, mode: Mode); compute(x: Tensor): Tensor; } export declare class CosHNode extends UnaryNode { constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, mode: Mode); compute(x: Tensor): Tensor; } export declare class ACosHNode extends UnaryNode { constructor(attributes: Attributes, inputs: string[], outputs: string[], constants: Constants, onnxVersion: number, mode: Mode); compute(x: Tensor): Tensor; }