import { TEditorConfiguration } from "./documents/editor/core"; export interface EmailEditorProps { configuration: TEditorConfiguration; onChange: (output: { html: string; json: TEditorConfiguration; }) => void; onSave?: (output: { html: string; json: TEditorConfiguration; name: string; }) => void; theme?: "light" | "dark"; templateName?: string; } export default function EmailEditor({ configuration, onChange, onSave, theme: themeMode, templateName, }: EmailEditorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=EmailEditor.d.ts.map