import { ChoiceOptions } from './Options'; import { RandomNumberGenerator } from './RandomNumberGenerator'; declare function randomChoice(values: T[], options?: ChoiceOptions, random?: RandomNumberGenerator): T[]; declare function randomChoice(values: number, options?: ChoiceOptions, random?: RandomNumberGenerator): number[]; export default randomChoice; //# sourceMappingURL=choice.d.ts.map