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