import type { ClientRect } from '@dnd-kit/core'; import type { Transform } from '@dnd-kit/utilities'; export declare type SortingStrategy = (args: { activeNodeRect: ClientRect | null; activeIndex: number; index: number; rects: ClientRect[]; overIndex: number; }) => Transform | null;