import type { Selection } from '@atlaskit/editor-prosemirror/state'; import type { Rect } from '../table-map'; export declare const isRectSelected: (rect: Rect) => (selection: Selection) => boolean; export declare const isColumnSelected: (columnIndex: number) => (selection: Selection) => boolean; export declare const isRowSelected: (rowIndex: number) => (selection: Selection) => boolean; export declare const isTableSelected: (selection: Selection) => boolean;