import { EditorDoc } from "../doc"; export interface Office2DocOptions { convertList?: boolean; convertFont?: boolean; } export declare function isOfficeHtml(html: string): boolean; export declare function plainFragmentComplexElements(fragment: DocumentFragment): void; export declare function officeHtml2Doc(html: string, options: Office2DocOptions): EditorDoc | undefined;