import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model'; import { Selection } from '@atlaskit/editor-prosemirror/state'; import type { SelectionBookmark } from '@atlaskit/editor-prosemirror/state'; import type { Mappable } from '@atlaskit/editor-prosemirror/transform'; export declare class CellBookmark implements SelectionBookmark { readonly anchor: number; readonly head: number; constructor(anchor: number, head: number); map(mapping: Mappable): SelectionBookmark; resolve(doc: PMNode): Selection; }