import { Optional } from '@ephox/katamari'; import * as fc from 'fast-check'; export interface WeightedItem { useDepth?: boolean; weight: number; } export interface AccWeightItem { accWeight: number; } export interface WeightedList { readonly list: (T & AccWeightItem)[]; readonly total: number; } declare const generator: (candidates: T[]) => fc.Arbitrary>; export { generator }; //# sourceMappingURL=WeightedChoice.d.ts.map