import type { NodeType, ResolvedPos, Schema } from '@atlaskit/editor-prosemirror/model';
import type { EditorState } from '@atlaskit/editor-prosemirror/state';
export declare const getParentOfTypeCount: (nodeType: NodeType) => ($pos: ResolvedPos) => number;
export declare const getPositionAfterTopParentNodeOfType: (nodeType: NodeType) => ($pos: ResolvedPos) => number | undefined;
export declare const isSelectionTableNestedInTable: (state: EditorState) => boolean;
export declare const isNestedTablesSupported: (schema: Schema) => boolean;
export declare const isPanelNestingTableSupported: (schema: Schema) => boolean;
