/** * Generates a random 32 byte, human readable string. * Based on math at https://zelark.github.io/nano-id-cc/ * at 1000 Ids/s it would take more than 1 quadrillion years or * 8,730,800,738,924,245T IDs, in order to have a 1% probability * of at least one collision. */ export declare const random32ByteString: () => Promise;