import React from 'react'; import { GridBasicItemComponentProps } from './basic-item'; import { Wrap } from './grid-types'; interface Props { gap: number; wrap: Wrap; className: string; } declare const defaultProps: { gap: number; wrap: "wrap" | "nowrap" | "wrap-reverse"; className: string; }; export declare type GridContainerProps = Props & typeof defaultProps & GridBasicItemComponentProps; declare type MemoGridContainerComponent
= React.NamedExoticComponent
;
declare type ComponentProps = Partial