/** * @function * Random slice of an array. * * @param array: The array to get random slice from. * @param elements: Number of elements. * * @returns Promise */ declare const arrayRandomSubset: (array: T[], elements: number) => Promise; export default arrayRandomSubset; //# sourceMappingURL=arrayRandomSubset.d.ts.map