'use client' import { StepStructureDetection } from '@/components/ocr-pipeline/StepStructureDetection' interface StepStructureProps { sessionId: string | null onNext: () => void } /** Thin wrapper around the shared StepStructureDetection component */ export function StepStructure({ sessionId, onNext }: StepStructureProps) { return }