import { EditorDoc, DocBlock } from "../doc"; export declare type HtmlToBlocksFunction = (doc: EditorDoc, html: string, options: any) => DocBlock[]; export declare function htmlTable2Block(doc: EditorDoc, table: HTMLTableElement, elementsToBlocksFunction: HtmlToBlocksFunction, options: any): DocBlock[];