/** * @license * Copyright 2025 Qwen * SPDX-License-Identifier: Apache-2.0 */ import { type SubagentConfig } from '@3-/qwen-code-core'; import type { StepNavigationProps } from '../types.js'; interface AgentDeleteStepProps extends StepNavigationProps { selectedAgent: SubagentConfig | null; onDelete: (agent: SubagentConfig) => Promise; } export declare function AgentDeleteStep({ selectedAgent, onDelete, onNavigateBack, }: AgentDeleteStepProps): import("react/jsx-runtime").JSX.Element; export {};