/**
 * @license
 * Copyright 2020 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Randomly generates `n` bytes.
 *
 * @param n number of bytes to generate
 * @return the random bytes
 * @static
 */
export declare function randBytes(n: number): Uint8Array;
