/** * Replace content of table by tableToPaste's cells, starting from refCell and ending wherever it's needed to copy * them all (rows and columns will be created if necessary). */ export declare function pasteCells(table: HTMLTableElement, refCell: HTMLTableCellElement, tableToPaste: HTMLTableElement): void; /** * Creates a table out of htmlToPaste if it contains only table elements (td, th, tr, tbody, thead, tfoot, table) * and returns it. */ export declare function getTableToPaste(htmlToPaste: string, document: Document): HTMLTableElement | null;