import { OAuthConfig } from "../Config/OAuthConfig"; export declare function handleAuthorizationCode(authCode: string, config: OAuthConfig): Promise<{ accessToken?: string; refreshToken?: string; error?: string; }>;