import type { AttachDomEvent } from 'roosterjs-editor-types'; /** * @internal * Attach a DOM event to the editor content DIV * @param core The EditorCore object * @param eventName The DOM event name * @param pluginEventType Optional event type. When specified, editor will trigger a plugin event with this name when the DOM event is triggered * @param beforeDispatch Optional callback function to be invoked when the DOM event is triggered before trigger plugin event */ export declare const attachDomEvent: AttachDomEvent;