import React from 'react'; import { ElementChange, StructuralChange } from '../types/changeTracking'; interface ViteVisualEditorProps { children: React.ReactNode; defaultEnabled?: boolean; onSave?: (changes: { elementChanges: ElementChange[]; structuralChanges: StructuralChange[]; }) => void; /** * Dev-server route that runs `cdecli interact-agent` for the "Send to AI" button. * Must match the `cdecliInteractAgent()` Vite plugin's route. Default: `/__cdecli/interact-agent`. */ cdecliEndpoint?: string; } export declare const ViteVisualEditor: React.FC; export {}; //# sourceMappingURL=ViteVisualEditor.d.ts.map