/** * A v4 uuid on every platform this package runs on. * * `uuid`'s browser build — the one React Native resolves — throws * "crypto.getRandomValues() not supported" on Hermes, which has no WebCrypto * and no polyfill unless the host app installs one. These ids are idempotency * and correlation keys rather than secrets, so falling back to `Math.random` * beats crashing a withdrawal mid-flight. */ export declare function randomUuid(): string; //# sourceMappingURL=randomUuid.d.ts.map