export interface RandomProvider {
    numberBetween(min: number, max: number): number;
}
