import React from 'react'; interface ImageEditorProps { isOpen: boolean; onClose: () => void; imageUrl: string | null; onSave: (imageData: { url: string; caption: string; alt: string; credit: string; }) => void; } declare const ImageEditor: React.FC; export default ImageEditor; //# sourceMappingURL=ImageEditor.d.ts.map