import type { VCell } from 'roosterjs-editor-types'; import type { VTable } from 'roosterjs-editor-dom'; /** * @internal * Executes an action to all the cells within the selection range. * @param callback action to apply on each selected cell * @returns the amount of cells modified */ export declare const forEachSelectedCell: (vTable: VTable, callback: (cell: VCell) => void) => void;