import type { OAuthLoginCallbacks } from "./oauth/types"; /** * Login to Tavily. * * Opens browser to API keys page and prompts user to paste their API key. * Returns the API key directly (not OAuthCredentials - this isn't OAuth). */ export declare function loginTavily(options: OAuthLoginCallbacks): Promise; export declare const tavilyProvider: { readonly id: "tavily"; readonly name: "Tavily"; readonly envKeys: "TAVILY_API_KEY"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };