export interface OAuthFlowResult { code?: string; error?: string; port: number; } /** * Run complete OAuth flow with built-in server and browser opening * * @param authUrl Base authorization URL (without redirect_uri) * @param authUrlBuilder Function that takes port and returns complete auth URL * @returns Authorization code or error */ export declare function runOAuthFlow(authUrlBuilder: (redirectUri: string) => string): Promise; //# sourceMappingURL=oauthFlow.d.ts.map