import type { IEditor, PluginMouseDownEvent } from 'roosterjs-editor-types'; import type { TableCellSelectionState } from '../TableCellSelectionState'; /** * @internal */ export declare function handleMouseDownEvent(event: PluginMouseDownEvent, state: TableCellSelectionState, editor: IEditor): void; /** * @internal */ export declare function selectionInsideTableMouseMove(event: MouseEvent, state: TableCellSelectionState, editor: IEditor): void;