import React, { type ReactNode } from 'react' import { Box } from '../../../../ink.js' import { ConfigurableShortcutHint } from '../../../ConfigurableShortcutHint.js' import { Select } from '../../../CustomSelect/select.js' import { Byline } from '../../../design-system/Byline.js' import { KeyboardShortcutHint } from '../../../design-system/KeyboardShortcutHint.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 ( } >