import React from 'react'; import GridItem from './GridItem'; export interface GridProps { gutter?: number; className?: string; alignItems?: string; children?: React.ReactNode; noGutters?: boolean; } declare const defaultProps: { className: string; gutter: number; noGutters: boolean; }; declare type GridComponent
= React.NamedExoticComponent
& {
Item: typeof GridItem;
};
declare type NativeAttrs = Omit