import React from 'react'; import type { IView, ViewData } from '../../typing'; import './index.less'; export declare type ComponentProps = { view: IView; rootView: IView; activeViewKey: string; }; interface Props extends ComponentProps { renderComponent: (props: ComponentProps) => JSX.Element; } declare const SplitView: (props: Props) => React.JSX.Element; export default SplitView;