import type { OAuthController, OAuthLoginCallbacks } from "./oauth/types"; /** * Login to Parallel. * * Opens browser to the API keys page, prompts the user to paste their API key, * and returns the API key directly. */ export declare function loginParallel(options: OAuthController): Promise; export declare const parallelProvider: { readonly id: "parallel"; readonly name: "Parallel"; readonly envKeys: "PARALLEL_API_KEY"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };