import { FunctionComponent } from "react";
export type SplitViewProps = {
    left: JSX.Element;
    right: JSX.Element;
    defaultLeftPanelWidth: number;
};
export declare const SplitView: FunctionComponent<SplitViewProps>;
