import React from 'react'; import type { SummaryData } from '../../types'; interface SummarySubCardProps { data: Partial; onUpdate: (data: Record) => void; onDelete: () => void; onMoveUp: () => void; onMoveDown: () => void; validationErrors?: Array<{ field: string; message: string; }>; } declare const SummarySubCard: React.FC; export default SummarySubCard; //# sourceMappingURL=SummarySubCard.d.ts.map