import { AttributeWithCacheKey } from '../../../attribute-with-cache-key'; import { OperatorImplementation, OperatorInitialization } from '../../../operators'; export interface TransposeAttributes extends AttributeWithCacheKey { readonly perm: number[]; } export declare const transpose: OperatorImplementation; export declare const parseTransposeAttributes: OperatorInitialization;