import { PropsWithChildren, ReactNode } from 'react';
export interface GridContainerProps {
    readonly top?: ReactNode;
    readonly bottom?: ReactNode;
}
export declare function GridContainer({ top, bottom, children }: PropsWithChildren<GridContainerProps>): import("react/jsx-runtime").JSX.Element;
