import React from "react"; interface Props { /** * Scroll pane contents */ children: JSX.Element | JSX.Element[]; /** * CSS width */ width?: string; /** * Max CSS width */ maxWidth?: string; /** * Min CSS width */ minWidth?: string; /** * CSS height */ height?: string; /** * Max CSS height */ maxHeight?: string; /** * Min CSS height */ minHeight?: string; } export interface RefInstance { } declare const ScrollPane: React.ForwardRefExoticComponent>; export default ScrollPane;