'use client' import React from 'react' import { StepHeader, STEP_EXPLANATIONS } from '@/components/sdk/StepHeader' export default function ObligationsHeader({ profiling, showGapAnalysis, onAutoProfiling, onToggleGap, onAdd, }: { profiling: boolean showGapAnalysis: boolean onAutoProfiling: () => void onToggleGap: () => void onAdd: () => void }) { const stepInfo = STEP_EXPLANATIONS['obligations'] return (
) }