import type { OAuthLoginCallbacks } from "./oauth/types.js"; /** * 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 const loginParallel: (options: import("./oauth/index.js").OAuthController) => Promise; export declare const parallelProvider: { readonly id: "parallel"; readonly name: "Parallel"; readonly envKeys: "PARALLEL_API_KEY"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };