import { Ref } from "react"; import { BoxProps } from "../Box"; interface ScrollPaneProps extends BoxProps { disabled?: boolean; scrollableContainerRef?: Ref; } export declare const ScrollPane: (props: ScrollPaneProps) => JSX.Element; export {};