import type { OAuthCredentials, OAuthLoginCallbacks } from "./oauth/types"; export declare const anthropicProvider: { readonly id: "anthropic"; readonly name: "Anthropic (Claude Pro/Max)"; readonly envKeys: () => string | undefined; readonly login: (cb: OAuthLoginCallbacks) => Promise; readonly refreshToken: (credentials: OAuthCredentials) => Promise; readonly callbackPort: 54545; readonly pasteCodeFlow: true; };