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