/** * Generate a random string of the given length. * Warning: This is not a cryptographically secure random string generator. * @category Utils */ export declare const generateRandomString: (length?: number, alphabet?: string) => string;