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