import { RandomGenerator } from '../generator/RandomGenerator';
export type Distribution<T> = (rng: RandomGenerator) => [T, RandomGenerator];
