import { CellId } from "../types.js";
/**
 * Check if two cell ids are identical.
 *
 * @param cellId1 - Cell id 1 to compare.
 * @param cellId2 - Cell id 1 to compare.
 * @returns True if the cell ids are identical.
 *
 * @public
 */
export declare const isSameCell: (cellId1: CellId, cellId2: CellId) => boolean;
