/** * SGLang login flow. * * SGLang commonly exposes an OpenAI-compatible API on a local server. It may * require a bearer token, but local servers commonly allow unauthenticated * access. This flow stores an API-key-style credential for auth storage. */ import type { OAuthController } from "./types"; /** * Login to SGLang with an explicit bearer token. */ export declare function loginSglang(options: OAuthController): Promise;