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: React.FunctionComponent<IProps>;
export default VerticalSplit;
