import { Tensor } from '../tensor'; export declare class SoftmaxOps { static softmax(logits: T, dim?: number): T; static softmaxCrossEntropy(labels: T, logits: T, dim?: number): O; }