import type { OAuthLoginCallbacks } from "./oauth/types"; /** * Login to Venice. * * Opens browser to API keys page, prompts user to paste their API key. * Returns the API key directly (not OAuthCredentials - this isn't OAuth). */ export declare const loginVenice: (options: import("./oauth").OAuthController) => Promise; export declare const veniceProvider: { readonly id: "venice"; readonly name: "Venice"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };