/** @packageDocumentation * @module ContentView */ import * as React from "react"; /** Based on react-split-pane package. See https://github.com/tomkp/react-split-pane/blob/master/LICENSE */ /** * @internal */ export interface PaneProps { className?: string; size?: string | number; split?: "vertical" | "horizontal"; style?: React.CSSProperties; eleRef: React.RefObject; children?: React.ReactNode; } /** * @internal */ export declare function Pane(props: PaneProps): React.JSX.Element; //# sourceMappingURL=Pane.d.ts.map