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