/********************************************************************************************************************************* This class has been automatically generated using KLTT-APIRestGenerator project, don't do manual file modifications. Mon Oct 22 12:45:25 CEST 2018 "Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements; and to You under the Apache License, Version 2.0. " **********************************************************************************************************************************/ /** * This class contains the common methods for random use */ export declare class RandomValues { /** * Public constructor */ constructor(); /** * @return a random boolean */ static generateRandomBoolean(): boolean; /** * @return a random number */ static generateRandomNumber(): number; /** * @return a random string */ static generateRandomString(): string; /** * @return a random file */ static generateRandomFile(): string; }