import * as React from 'react'; export interface Props { children?: any; className?: string; inline: boolean; } declare class Item extends React.PureComponent { static defaultProps: { inline: boolean; }; render(): JSX.Element; } export default Item;