import type NDArray from "../NDArray"; export declare function random(shape: any): NDArray; export declare function uniform(a: any, b: any, shape: any): NDArray; export declare function exponential(mean: any, shape: any): NDArray; export declare function _normal_buffer(n: number): Float64Array; export declare function randn(shape: number[]): NDArray; export declare function normal(mean: any, std: any, shape: any): NDArray; /** @param {any[]} list */ export declare function _shuffle(list: any): void; export declare function _shuffled(list: T): any; export declare function shuffled(arr: NDArray): NDArray; export declare function shuffle(arr: NDArray): void; //# sourceMappingURL=random.d.ts.map