/** * UUID v4 generator that works in both secure (HTTPS/localhost) and * non-secure (HTTP over LAN/IP) contexts. * * crypto.randomUUID() requires a secure context (HTTPS or localhost). * When accessed over plain HTTP via IP address, we fall back to * crypto.getRandomValues() which is available in all contexts. */ export declare function generateUUID(): string; //# sourceMappingURL=utils.d.ts.map