export function dragAndDropDriverFactory({ base, element }: { base: any; element: any; }): { beginDrag: ({ dataHook }: { dataHook: any; }) => Promise; dragOver: ({ dataHook, offset }: { dataHook: any; offset: any; }) => Promise; endDrag: (item: any) => Promise; getItemPosition: ({ dataHook }: { dataHook: any; }) => Promise; getItemDepth: ({ dataHook }: { dataHook: any; }) => Promise; }; export function changeItemDepth({ dragAndDropDriver, depthLevel, threshold, dataHook, }: { dragAndDropDriver: any; depthLevel: any; threshold: any; dataHook: any; }): Promise; //# sourceMappingURL=dragAndDropDriverFactory.d.ts.map