import type { ResolvedPos } from '@atlaskit/editor-prosemirror/model'; import type { Selection } from '@atlaskit/editor-prosemirror/state'; import type { ContentNodeWithPos } from '@atlaskit/editor-prosemirror/utils'; import type { Rect } from '../table-map'; export declare const findTable: (selection: Selection) => ContentNodeWithPos | undefined; export declare const findTableClosestToPos: ($pos: ResolvedPos) => ContentNodeWithPos | undefined; export declare const findCellClosestToPos: ($pos: ResolvedPos) => ContentNodeWithPos | undefined; export declare const findCellRectClosestToPos: ($pos: ResolvedPos) => Rect | undefined;