export type ClassicEditorController = { setHtml: (html: string) => void; getHtml: () => string; focus: () => void; blur: () => void; destroy: () => void; }; declare global { interface Window { SmartRTE?: any; } }