//#region src/oneElementOf.d.ts
/**
 * Returns one random element from the array.
 *
 * @example
 * ```ts
 * oneElementOf([1, 2, 3]); // 2
 * ```
 */
declare function oneElementOf<const T>(array: ReadonlyArray<T>): T;
//#endregion
export { oneElementOf };