/** * Finds the index of the element whose horizontal bounds contain `clientX`. * When `clientX` falls outside every element, it clamps to the first or last * element; returns `null` when no element matches and the row is empty. */ export declare function getIndexFromDragPoint(elements: (HTMLElement | null)[], clientX: number): number | null;