import { type Factory } from './getter'; /** * Returns a random value. */ export type RandomFromArrayFactory = Factory; /** * Creates a factory that returns a random element from the given array on each call. * * @param values - The array of values to randomly select from * @returns A factory that returns a random element from the array */ export declare function randomFromArrayFactory(values: T[]): RandomFromArrayFactory;