/** * Cross-platform random bytes implementation that works in both Node.js and browser environments */ /** * Generate cryptographically secure random bytes * Works in both Node.js and browser environments * * @param length Number of bytes to generate * @returns Uint8Array of random bytes */ declare function getRandomBytes(length: number): Uint8Array; export { getRandomBytes };