import React from 'react'; import { Justify, Direction, AlignItems, AlignContent } from './grid-types'; type BreakpointsValue = number | boolean; interface Props { xs?: BreakpointsValue; sm?: BreakpointsValue; md?: BreakpointsValue; lg?: BreakpointsValue; xl?: BreakpointsValue; justify?: Justify; direction?: Direction; alignItems?: AlignItems; alignContent?: AlignContent; className?: string; } declare const defaultProps: { xs: BreakpointsValue; sm: BreakpointsValue; md: BreakpointsValue; lg: BreakpointsValue; xl: BreakpointsValue; className: string; }; type NativeAttrs = Omit, keyof Props>; export type GridBasicItemProps = Props & typeof defaultProps & NativeAttrs; type MemoBasicItemComponent

= React.NamedExoticComponent

; export type GridBasicItemComponentProps = Partial & Omit & NativeAttrs; declare const _default: MemoBasicItemComponent; export default _default;