export type UUID = string; /** * Generate a random UUID v4. * * Uses native crypto.randomUUID() on Node 14.17.0+, falls back to * crypto.randomBytes() on older versions. The implementation is * selected once at module load time to avoid per-call overhead. */ export declare const randomId: () => UUID; //# sourceMappingURL=uuid.d.ts.map