import * as React from "react"; type Props = { rendererTitle: React.ReactNode; renderer: React.ReactNode; JSONTitle?: string; jsonObject: any; }; /** * This component is used in Storybook to render both the renderer and the JSON object in a split view. * Currently, the renderer is displayed above the JSON object. */ declare const SplitView: ({ rendererTitle, renderer, JSONTitle, jsonObject, }: Props) => React.ReactElement; export default SplitView;