/** * Generates a UUID v4 (random) string. * Behaves like uuid v4: 128-bit random value with version 4 and RFC 4122 variant bits. * Uses crypto.getRandomValues when available, otherwise Math.random for the random bytes. */ export declare function uuid(): string; //# sourceMappingURL=uuid.d.ts.map