import { AttributeWithCacheKey } from '../../../attribute-with-cache-key'; import { OperatorImplementation, OperatorInitialization } from '../../../operators'; export interface SoftmaxAttributes extends AttributeWithCacheKey { readonly axis: number; } export declare const softmax: OperatorImplementation; export declare const parseSoftmaxAttributes: OperatorInitialization; export declare const parseSoftmaxAttributesV13: OperatorInitialization; export declare const softmaxV13: OperatorImplementation;