import { PropsWithChildren } from 'react';
export interface GridWrapperProps {
    maxHeight?: number | string;
}
export declare const GridWrapper: ({ children, maxHeight }: PropsWithChildren<GridWrapperProps>) => import("react/jsx-runtime").JSX.Element;
