import type { Selection } from '@atlaskit/editor-prosemirror/state'; import { TableMap } from '../table-map'; import { findTable } from './find'; export declare function getSelectedTableInfo(selection: Selection): { map: TableMap | undefined; table: ReturnType | undefined; totalColumnCount: number; totalRowCount: number; }; export declare function getSelectedCellInfo(selection: Selection): { totalRowCount: number; totalColumnCount: number; horizontalCells: number; verticalCells: number; totalCells: number; };