import type NDArray from "../NDArray"; import { ArrayOrConstant } from './operators'; import { Func_a_lastAxis } from './kwargs'; import { TypedArrayConstructor } from '../dtypes'; /** * This function can reduce, sort, operate pointwise, or increase the dimensionality. */ export declare function apply_along_axis(arr: NDArray, axis: number, transform: any, dtype?: TypedArrayConstructor): ArrayOrConstant; export declare const cmp_nan_at_the_end: (a: number, b: number) => number; export declare function sort(a: NDArray, axis: number): NDArray; export declare function transpose(arr: NDArray, axes?: null | number[]): NDArray; export declare function swapAxes(arr: NDArray, axisA: number, axisB: number): NDArray; export declare function concatenate(arrays: NDArray[], axis?: number | null): NDArray; export declare function stack(arrays: NDArray[], axis?: number): NDArray; export declare const kw_exported: { sort: Func_a_lastAxis.Wrapper; }; //# sourceMappingURL=transform.d.ts.map