import * as React from 'react'; interface IProps { /** * Optional style to be used on the container div */ style?: any; /** * Optional style for the draggable divider bars between sections */ sliderStyle?: any; } declare const VerticalSplit: (props: React.PropsWithChildren) => JSX.Element; export default VerticalSplit;