import type { VTable } from 'roosterjs-editor-dom'; /** * @internal */ export declare type Nullable = T | null | undefined; /** * @internal */ export interface TableCellSelectionState { lastTarget: Nullable; firstTarget: Nullable; tableSelection: Nullable; startedSelection: Nullable; vTable: Nullable; firstTable: Nullable; targetTable: Nullable; preventKeyUp: boolean; mouseMoveDisposer: (() => void) | null; }