export declare class Random { static chars: string[]; static string(length?: number, chars?: string[]): string; static stringRandomLength(minLength?: number, maxLength?: number, chars?: string[]): string; static number(min?: number, max?: number): number; static choice(array: T[]): T; static chance(percentage: number): boolean; static uuid(): string; } //# sourceMappingURL=random.d.ts.map