export declare class xRandom {
    static randomFloat(min: number, max: number): number;
    static randomInt(min: number, max: number): number;
}
