import React from 'react'; import type { EmbedData } from '../../types'; declare global { interface Window { twttr?: { widgets: { load: (element?: HTMLElement) => void; }; }; instgrm?: { Embeds: { process: () => void; }; }; } } interface EmbedSubCardProps { data: Partial; onUpdate: (data: Record) => void; onDelete: () => void; onMoveUp: () => void; onMoveDown: () => void; validationErrors?: Array<{ field: string; message: string; }>; } declare const EmbedSubCard: React.FC; export default EmbedSubCard; //# sourceMappingURL=EmbedSubCard.d.ts.map