/** * MiniMax Token Plan login flow. * * MiniMax Token Plan is a subscription service that provides access to * MiniMax models (M2 and newer) through an OpenAI-compatible API. * * This is not OAuth - it's a simple API key flow: * 1. Open browser to the matching regional MiniMax subscription page * 2. User subscribes and copies their API key * 3. User pastes the API key back into the CLI * * International: https://api.minimax.io/v1 * China: https://api.minimaxi.com/v1 */ /** * Login to MiniMax Token Plan (international). * * Opens browser to subscription page, prompts user to paste their API key. * Returns the API key directly (not OAuthCredentials - this isn't OAuth). */ export declare const loginMiniMaxCode: (options: import("./types").OAuthController) => Promise; /** * Login to MiniMax Token Plan (China). * * Same flow as international but uses China endpoint. */ export declare const loginMiniMaxCodeCn: (options: import("./types").OAuthController) => Promise;