import type { Direction } from 'react-beautiful-dnd'; /** * ASSUMPTIONS: * - Adjacent `` items are visually adjacent. * - If there is an adjacent element, it is rendered. */ export declare function calculateGap({ element, where, direction, contextId, }: { element: HTMLElement; where: 'before' | 'after'; direction: Direction; contextId: string; }): number; export declare function getGapOffset({ element, where, direction, contextId, }: { element: HTMLElement; where: 'before' | 'after'; direction: Direction; contextId: string; }): number;