import type { GridSections, PositionGridCell, PositionUnion } from "../../types.js"; import type { ForceSettings } from "./get-access-forcing.js"; /** * Returns the current drag rect. This is the select rect the user is creating, * but it has not yet been committed to the selections. */ export declare function computeActiveRect(anchorPosition: PositionGridCell, currentPosition: PositionGridCell, gridSections: GridSections, viewport: HTMLElement, force: ForceSettings, cellRoot: (row: number, column: number) => PositionUnion | null): import("../types.js").DataRect | null;