/** * PKCE utilities using Web Crypto API. * Works in both Node.js 20+ and browsers. */ /** * [WHO]: Extension interface * [FROM]: No external dependencies * [TO]: Consumed by core/lib/ai/src/index.ts * [HERE]: core/lib/ai/src/utils/oauth/pkce.ts - */ /** * Generate PKCE code verifier and challenge. * Uses Web Crypto API for cross-platform compatibility. */ export declare function generatePKCE(): Promise<{ verifier: string; challenge: string; }>;