import { Root } from 'react-dom/client'; import { default as HtmlEditor } from './App'; import { HtmlEditorProps } from './types'; export * from './types'; export default HtmlEditor; export { HtmlEditor }; /** * Helper function to mount the HtmlEditor into any DOM element. * Works seamlessly in Vue, Angular, Svelte, or Vanilla JavaScript projects. */ export declare function mountHtmlEditor(container: HTMLElement, props?: HtmlEditorProps): Root; /** * Helper function to unmount the HtmlEditor and cleanup DOM nodes. */ export declare function unmountHtmlEditor(container: HTMLElement): boolean;