import { CellSelection } from 'prosemirror-tables';
export * from 'prosemirror-tables';

/**
 * Predicate checking whether the selection is a [[`CellSelection`]].
 *
 * @param value - the value to check
 */
declare function isCellSelection(value: unknown): value is CellSelection;

export { isCellSelection };
