import type { ParsedTable, TableCellCoordinate } from 'roosterjs-content-model-types'; /** * @internal * Try to find the last logic cell of a merged table cell * @param parsedTable The parsed table * @param row Row index * @param col Column index */ export declare function findLastedCoInMergedCell(parsedTable: ParsedTable, coordinate: TableCellCoordinate): TableCellCoordinate | null;