import { RefCallback } from 'react'; export interface UseResizableReturnType { /** Ref for the custom resizer element */ resizerRef: RefCallback; } export type UseResizableProps = { /** * The order of the resize handle. * Used to map the handle to the corresponding resizable panels. */ order: number; }; /** @internal */ export declare const useResizable: ({ order, }: UseResizableProps) => UseResizableReturnType;