import type { GridSections, PositionGridCell } from "../../types.js"; export interface ForceSettings { readonly start: boolean; readonly end: boolean; readonly top: boolean; readonly bottom: boolean; } /** * Returns a set a boolean flags indicating if selection should be allowed in the different pin * areas of the viewport. This is used to override the scroll condition for when dragging begins * in one of the pinned areas. */ export declare function getAccessForcing(gridSections: GridSections, startPosition: PositionGridCell): ForceSettings;