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