import * as React from "react"; export type ScrollBoxProps = React.ComponentProps<"div"> & { orientation?: "vertical" | "horizontal" | "both"; viewportClassName?: string; }; declare function ScrollBox({ orientation, className, viewportClassName, children, ...props }: ScrollBoxProps): React.JSX.Element; export { ScrollBox };