/** * Anthropic OAuth flow (Claude Pro/Max) */ import type { OAuthCredentials, OAuthProviderInterface } from './types.js'; export declare function loginAnthropic(onAuthUrl: (url: string) => void, onPromptCode: () => Promise): Promise; export declare function refreshAnthropicToken(refreshToken: string): Promise; export declare const anthropicOAuthProvider: OAuthProviderInterface;