//#region extensions/openai/openai-chatgpt-device-code.d.ts type OpenAICodexDeviceCodePrompt = { verificationUrl: string; userCode: string; expiresInMs: number; }; type OpenAICodexDeviceCodeCredentials = { access: string; refresh: string; expires: number; }; declare function loginOpenAICodexDeviceCode(params: { fetchFn?: typeof fetch; onVerification: (prompt: OpenAICodexDeviceCodePrompt) => Promise | void; onProgress?: (message: string) => void; }): Promise; //#endregion export { loginOpenAICodexDeviceCode };