import ReferenciasParaIA from './PasoDetallesPanel/ReferenciasParaIA' import type { NewPlanWizardState } from '@/features/planes/nuevo/types' import { Button } from '@/components/ui/button' import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from '@/components/ui/card' import { Input } from '@/components/ui/input' import { Label } from '@/components/ui/label' import { CARRERAS, FACULTADES, PLANES_EXISTENTES, } from '@/features/planes/nuevo/catalogs' export function PasoDetallesPanel({ wizard, onChange, onGenerarIA, isLoading, }: { wizard: NewPlanWizardState onChange: React.Dispatch> onGenerarIA: () => void isLoading: boolean }) { if (wizard.modoCreacion === 'MANUAL') { return ( Creación manual Se creará un plan en blanco con estructura mínima. ) } if (wizard.modoCreacion === 'IA') { return (