import React from 'react'; import { Justify, Direction, AlignItems, AlignContent } from './grid-types'; declare 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: number | boolean; sm: number | boolean; md: number | boolean; lg: number | boolean; xl: number | boolean; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type GridBasicItemProps = Props & typeof defaultProps & NativeAttrs; declare type MemoBasicItemComponent

= React.NamedExoticComponent

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