import type { OAuthCredentials, OAuthLoginCallbacks } from "./oauth/types"; export declare const googleGeminiCliProvider: { readonly id: "google-gemini-cli"; readonly name: "Google Cloud Code Assist (Gemini CLI)"; readonly login: (cb: OAuthLoginCallbacks) => Promise; readonly refreshToken: (credentials: OAuthCredentials) => Promise; readonly callbackPort: 8085; readonly pasteCodeFlow: true; };