import { EditorEvent } from 'tinymce'; export type TinyClipboardEvent = EditorEvent; export type TinyDragEvent = EditorEvent; export type RCEClipOrDragEvent = (TinyClipboardEvent | TinyDragEvent) & { instructure_handled_already?: boolean; }; export declare function isMicrosoftWordContentInEvent(event: RCEClipOrDragEvent): boolean; export declare function isMicrosoftWordContent(html: string): boolean;