/** * Simple random number generator with seed, because sometime we need to be able to get the same random number by using the same seed. * Taken from https://stackoverflow.com/questions/521295/seeding-the-random-number-generator-in-javascript */ export declare class Random { next: () => number; constructor(seed?: string); nextFloat(min: number, max: number): number; nextInt(min: number, max: number): number; } export declare function createRandom(seed?: string): Random;