import React, { RefAttributes, PropsWithoutRef } from 'react'; import { CSS } from '../theme'; import { GridItemProps } from './grid-item'; import { Wrap } from '../utils/prop-types'; interface Props { gap?: number; wrap?: Wrap; className?: string; css?: CSS; } declare const defaultProps: { gap: number; wrap: "nowrap" | "wrap" | "wrap-reverse"; className: string; }; export declare type GridContainerProps = Props & Partial & GridItemProps; declare type GridContainerComponent = React.ForwardRefExoticComponent & RefAttributes>; declare const _default: GridContainerComponent; export default _default;