import type { Coordinates } from 'roosterjs-editor-types'; import type { VTable } from 'roosterjs-editor-dom'; /** * @internal * Gets the coordinates of a cell * @param cellInput The cell the to find the coordinates * @returns Coordinates of the cell, null if not found */ export declare function getCellCoordinates(vTable: VTable, cellInput: Node): Coordinates | undefined;