import type { Node, Schema } from 'prosemirror-model'; import type { EditorState } from 'prosemirror-state'; export declare const isIntoTable: (state: EditorState) => boolean; export declare const findParentTable: (state: EditorState) => import("node_modules/prosemirror-utils/dist/types").FindResult; export declare const findParentBody: (state: EditorState) => import("node_modules/prosemirror-utils/dist/types").FindResult; export declare const findParentRow: (state: EditorState) => import("node_modules/prosemirror-utils/dist/types").FindResult; export declare const findParentCell: (state: EditorState) => import("node_modules/prosemirror-utils/dist/types").FindResult; export declare const findTableRows: (table: Node, schema: Schema) => { node: Node; pos: number; }[]; export declare const findTableCells: (table: Node, schema: Schema) => { node: Node; pos: number; }[];