import React from 'react'; import { SplitPaneHooks } from '../..'; /** * called at the end of a drag, sets the final size as well as runs the callback hook */ export declare const useHandleDragFinished: ({ setSizes, hooks, movedSizes, }: { children: React.ReactChild[]; setSizes: React.Dispatch>; movedSizes: number[]; hooks?: SplitPaneHooks | undefined; }) => () => void;