/** * Generates a new and random string * @param {number} [randomStringLength=5] The length of the new created string. Defaultvalue: 5 * @param {string} [characters='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'] The characters, that will be used for the random string. Defaultvalues: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789' * @return {string} Returns a new and random string with the length of randomStringLength and random characters that is passed in characters parameter * @since 1.1.0 */ export default function randomString(randomStringLength?: number, characters?: string): string; //# sourceMappingURL=randomString.d.ts.map