/** @module Interface wasi:random/insecure@0.2.3 **/ /** * Return `len` insecure pseudo-random bytes. * * This function is not cryptographically secure. Do not use it for * anything related to security. * * There are no requirements on the values of the returned bytes, however * implementations are encouraged to return evenly distributed values with * a long period. */ export function getInsecureRandomBytes(len: bigint): Uint8Array; /** * Return an insecure pseudo-random `u64` value. * * This function returns the same type of pseudo-random data as * `get-insecure-random-bytes`, represented as a `u64`. */ export function getInsecureRandomU64(): bigint;