import type { Options } from './types';
/**
 * Generate secure random bytes of given length.
 * @param {number} length
 * @return {string} bytes in hex
 */
export declare const generateSecureBytes: (length: number, options?: Options) => string;
