import { EmailTemplate } from 'easy-email-pro-editor'; import * as React from 'react'; export interface EasyEmailEditorHandle { getValues: () => EmailTemplate | null; exportHtml: () => Promise; } export interface EasyEmailEditorProps { initialValues?: EmailTemplate | null; onUpload?: (file: Blob) => Promise; height?: string; mergetagsData?: Record; } declare const EasyEmailEditor: React.ForwardRefExoticComponent>; export default EasyEmailEditor; //# sourceMappingURL=EasyEmailEditor.d.ts.map