import type { GridSections } from "../../types.js"; import type { ForceSettings } from "./get-access-forcing.js"; /** * Returns the current access regions for the viewport scroll. This tells us if cells in a particular pin * area can be selected based on the viewport's scroll position. */ export declare function getRangeAccess(gridSections: GridSections, viewport: HTMLElement, force: ForceSettings): { startAccessible: boolean; endAccessible: boolean; topAccessible: boolean; bottomAccessible: boolean; };