/** * @license * Copyright 2025 Qwen * SPDX-License-Identifier: Apache-2.0 */ import type { SubagentConfig } from '@aetherai/aether-core'; interface AgentSelectionStepProps { availableAgents: SubagentConfig[]; onAgentSelect: (agentIndex: number) => void; } export declare const AgentSelectionStep: ({ availableAgents, onAgentSelect }: AgentSelectionStepProps) => import("react/jsx-runtime").JSX.Element; export {};