import type { OAuthController, OAuthCredentials, OAuthLoginCallbacks } from "./oauth/types"; export declare function loginAlibabaCodingPlan(options: OAuthController): Promise; export declare const alibabaCodingPlanProvider: { readonly id: "alibaba-coding-plan"; readonly name: "Alibaba Coding Plan"; readonly login: (cb: OAuthLoginCallbacks) => Promise; readonly getApiKey: (credentials: OAuthCredentials) => string; };