import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type FlexItemPropTypes = { children: React.ReactNode[] | React.ReactNode; fixedSize?: string; grow?: boolean; shrink?: boolean; className?: string; order?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'first' | 'none'; alignSelf?: "start" | "end" | "center" | "stretch" | null; displayFlex?: boolean; } & GlobalProps; declare const FlexItem: (props: FlexItemPropTypes) => React.ReactElement; export default FlexItem;