export interface GridWrapperProps {
    className?: string | undefined;
    maxHeight?: number | string;
}
export declare const GridWrapper: import("react").ForwardRefExoticComponent<GridWrapperProps & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLDivElement>>;
