import React from 'react'; import type { Highcharts } from '../../../types'; import './WithSplitPane.css'; declare enum PaneSplits { VERTICAL = "vertical", HORIZONTAL = "horizontal" } export declare const withSplitPane: (ComposedComponent: React.ComponentType) => React.ForwardRefExoticComponent void; onSplitPaneMountCallback?: (chart: Highcharts.Chart) => void; paneSplitOrientation?: PaneSplits; onSplitPaneOrientationChange?: (orientation?: PaneSplits) => void; } & { current: any; forwardedRef: React.Ref; callback?: Highcharts.ChartCallbackFunction; }> & React.RefAttributes>; export {};