import React from "react"; import { UIElement } from "../UIElement"; import { SplitViewPanelElement } from "./SplitView/SplitViewPanelElement"; import { UIView } from "../UIView"; interface SplitViewConfig { leftPanel?: UIElement; rightPanel?: UIElement; } export declare class SplitView extends UIView { private _classNames; private _leftPanel?; private _rightPanel?; constructor(id: string, config?: SplitViewConfig); addClassName(className: string): void; removeClassName(className: string): void; getLeftPanel(): SplitViewPanelElement; getRightPanel(): SplitViewPanelElement; render(props?: any): React.ReactNode; private addElements; } export {};