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