export declare const defaultPasswordLength = 32; /** * Generates a random password of a given length. The password is generated from * the base64 alphabet. * * @param length The desired amount of characters * @returns The generated password */ export declare function generatePassword(length?: number): string;