import { CSSProperties, FC, HTMLAttributes } from 'react';
declare const FlexItem: FC;
declare type FlexChildrenProps = 'order' | 'flexGrow' | 'flexShrink' | 'flexBasis' | 'flex' | 'alignSelf';
interface FlexItemProps extends HTMLAttributes, Pick {
}
export { FlexItem };