import type { OAuthCredentials, OAuthLoginCallbacks } from "./oauth/types"; export declare const cursorProvider: { readonly id: "cursor"; readonly name: "Cursor (Claude, GPT, etc.)"; readonly login: (cb: OAuthLoginCallbacks) => Promise; readonly refreshToken: (credentials: OAuthCredentials) => Promise; };