import * as React from 'react';
export type ResizablePanelProps = React.HTMLAttributes<HTMLDivElement> & {
  /**
   * The direction to resize the panel.
   * @default 'horizontal'
   */
  direction?: 'horizontal' | 'vertical';
};
declare function ResizablePanel(props: ResizablePanelProps): import("react/jsx-runtime").JSX.Element;
export { ResizablePanel };