import type { Node, Schema } from 'prosemirror-model'; import type { EditorState } from 'prosemirror-state'; export declare const isIntoTable: (state: EditorState) => any; export declare const findParentTable: (state: EditorState) => any; export declare const findParentBody: (state: EditorState) => any; export declare const findParentRow: (state: EditorState) => any; export declare const findParentCell: (state: EditorState) => any; export declare const findTableRows: (table: Node, schema: Schema) => any; export declare const findTableCells: (table: Node, schema: Schema) => any;