/** * PKCE utilities using Web Crypto API. * Works in both Node.js 20+ and browsers. */ export declare function generatePKCE(): Promise<{ verifier: string; challenge: string; }>;