import type NDArray from "../NDArray"; import { TypedArrayConstructor } from "../dtypes"; export declare const _NDArray: typeof NDArray; export declare function isarray(A: any): A is NDArray; export declare function new_NDArray(flat: InstanceType, shape: number[]): NDArray; export declare function asarray(A: NDArray | any): NDArray; export declare function array(A: NDArray | any): NDArray; export declare function broadcast_shapes(shapeA: number[], shapeB: number[]): any[][]; export declare function broadcast_n_shapes(...shapes: number[][]): any[][]; //# sourceMappingURL=_globals.d.ts.map