import * as React from 'react';
export interface ResizablePanelContextValue {
  rootRef: React.RefObject<HTMLDivElement | null>;
  direction: 'horizontal' | 'vertical';
}
export declare const ResizablePanelContext: React.Context<ResizablePanelContextValue | undefined>;
export declare function useResizablePanelContext(): ResizablePanelContextValue;