import { ProsemirrorNode } from '@remirror/pm'; import { Selection } from '@remirror/pm/state'; import { CellSelection } from '@remirror/pm/tables'; import { Transform } from '@remirror/pm/transform'; type Attrs = Record; export declare function setNodeAttrs(tr: T, pos: number, attrs: Attrs, node?: ProsemirrorNode | null | undefined): T; export declare function selectionToCellSelection(selection: Selection): CellSelection; export declare function cellSelectionToSelection(selection: CellSelection): Selection; export {};