export declare class RandomGenerator { /** * * @param bytes Number of bytes to use to generate the number between 0 and 1. The number of distinct values * that this function can return is equal to 255^bytes. */ static random(bytes: number): number; }