export class CursorCoalescence {
    /**
     *
     * @type {CursorType[]}
     */
    cursorPriorities: CursorType[];
    cursors: any[];
    /**
     *
     * @param {CursorType[]} priorities
     */
    setPriorities(priorities: CursorType[]): void;
    reset(): void;
    /**
     *
     * @param {CursorType} cursor
     */
    add(cursor: CursorType): void;
    /**
     * @returns {CursorType}
     */
    get(): CursorType;
}
import { CursorType } from "./CursorType.js";
//# sourceMappingURL=CursorCoalescence.d.ts.map