import type { OAuthController, OAuthCredentials } from "./types"; type FetchFunction = NonNullable; export declare function loginDevin(ctrl: OAuthController): Promise; export declare function exchangeDevinCliToken(authorizationCode: string, codeVerifier: string, fetchImpl?: FetchFunction): Promise; export {};