export type RandomSeed = number | string | null;
export declare const random: (seed: RandomSeed, dummy?: unknown) => number;
