/**
 * Crypto Polyfill for Mobile Browsers
 *
 * Provides crypto.randomUUID() for browsers that don't support it (older mobile Safari/WebKit)
 */
/**
 * Polyfill for crypto.randomUUID()
 * Generates a RFC4122 version 4 compliant UUID
 */
export declare function polyfillCryptoRandomUUID(): void;
/**
 * Initialize crypto polyfill
 * Call this early in your application initialization
 */
export declare function initCryptoPolyfill(): void;
