import type { Position } from '@atlaskit/pragmatic-drag-and-drop/types'; type GetRemainderArgs = { current: Position; max: Position; change: Position; }; export declare const getOverlap: ({ current, max, change }: GetRemainderArgs) => Position | null; export {};