import type { GridSections } from "../../types.js"; /** * Returns the origin offsets based on the grid sections. The origin offset are the areas of the grid that * will result in auto scrolling as the user drags. */ export declare function getOriginOffsets(gridSections: GridSections, startMouseY: number, startMouseX: number, rtl: boolean, vpStartH: number, vpStartW: number): { originTop: boolean; originBottom: boolean; originStart: boolean; originEnd: boolean; };