import { type ReactNode } from 'react'; import { Box, Byline, KeyboardShortcutHint } from '@anthropic/ink'; import { ConfigurableShortcutHint } from '../../../ConfigurableShortcutHint.js'; import { Select } from '../../../CustomSelect/select.js'; import { useWizard } from '../../../wizard/index.js'; import { WizardDialogLayout } from '../../../wizard/WizardDialogLayout.js'; import type { AgentWizardData } from '../types.js'; export function MethodStep(): ReactNode { const { goNext, goBack, updateWizardData, goToStep } = useWizard(); const methodOptions = [ { label: 'Generate with Claude (recommended)', value: 'generate', }, { label: 'Manual configuration', value: 'manual', }, ]; return ( } >