declare type BytesReturn = [string, Error | null]; /** * randomBytes generates a string of random bytes of a specified length */ declare function randomBytes(length: number): Promise; export { randomBytes };