import type { EditorCore, ParsedTable, TableCellCoordinate } from 'roosterjs-content-model-types'; /** * @internal * Remove table cell selection styles * @param core The EditorCore object */ export declare function removeTableCellsStyle(core: EditorCore): void; /** * @internal * Set style for table cells in the selection * @param core The EditorCore object * @param table The HTML table element * @param parsedTable The parsed table structure * @param firstCell The coordinates of the first selected cell * @param lastCell The coordinates of the last selected cell */ export declare function setTableCellsStyle(core: EditorCore, table: HTMLTableElement, parsedTable: ParsedTable, firstCell: TableCellCoordinate, lastCell: TableCellCoordinate): void;