import React from 'react'; import { ElementChange, StructuralChange } from '../../types/changeTracking'; interface ChangeViewerProps { isVisible: boolean; changes: ElementChange[]; structuralChanges: StructuralChange[]; onClose: () => void; onSendToAI: () => void; onSendToGitHub?: () => void; onClearChanges: () => void; } export declare const ChangeViewer: React.FC; export {}; //# sourceMappingURL=ChangeViewer.d.ts.map