import type React from 'react'; export interface McpPickerItem { name: string; enabled: boolean; status: string; transport: string; description?: string | undefined; toolCount: number; lazy?: boolean | undefined; } export interface McpPickerProps { items: McpPickerItem[]; selected: number; busy?: boolean | undefined; hint?: string | undefined; } export declare function McpPicker({ items, selected, busy, hint, }: McpPickerProps): React.ReactElement; //# sourceMappingURL=mcp-picker.d.ts.map