import React from "react";
interface OverflowWrapperProps {
    children: React.ReactNode;
    maxHeight?: string;
    maxWidth?: string;
    direction?: "horizontal" | "vertical" | "both";
    hideScrollbar?: boolean;
}
export declare const OverflowWrapper: React.FC<OverflowWrapperProps>;
export {};
