/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ interface AetherAuthOptions { region?: string; key?: string; } /** * Handles the authentication process based on the specified command and options */ export declare function handleAetherAuth(command: 'aether-oauth' | 'coding-plan', options: AetherAuthOptions): Promise; /** * Runs the interactive authentication flow */ export declare function runInteractiveAuth(): Promise; /** * Shows the current authentication status */ export declare function showAuthStatus(): Promise; export {};