import type { CacheSelection, DOMSelection, TableSelection } from 'roosterjs-content-model-types'; /** * @internal * Check if the given selections are the same */ export declare function areSameSelections(sel1: DOMSelection, sel2: DOMSelection | CacheSelection): boolean; /** * @internal */ export declare function areSameTableSelections(t1: TableSelection, t2: TableSelection): boolean;