import type { ParsedTable, TableCellCoordinate } from 'roosterjs-content-model-types'; /** * @internal */ export interface TableCellCoordinateWithCell extends TableCellCoordinate { cell: HTMLTableCellElement; } /** * @internal * Try to find a TD/TH element from the given row and col number from the given parsed table * @param parsedTable The parsed table * @param row Row index * @param col Column index * @param findLast True to find last merged cell instead of the first cell */ export declare function findTableCellElement(parsedTable: ParsedTable, coordinate: TableCellCoordinate): TableCellCoordinateWithCell | null;