/**
 * CLI UX Improvements - Core Interfaces
 *
 * This module exports all the TypeScript interfaces for the CLI UX improvements
 * as specified in the design document. These interfaces define the contracts
 * for the TextInputHandler, ConnectionManager, and OnboardingFlow components.
 */
export type { TextInputHandler, KeyEvent, CursorPosition, InputOptions, InputSession, } from './TextInputHandler.js';
export type { ConnectionManager, ConnectionResult, ConfigResult, ServerInstance, ConnectionStatus, MCPConfig, } from './ConnectionManager.js';
export type { OnboardingFlow, SetupResult, TestResult, UserPreferences, OnboardingState, } from './OnboardingFlow.js';
