import * as React from 'react'; import { GenericProps } from '../const/props'; export interface BoxProps extends GenericProps { [propName: string]: any; flex?: boolean; inline?: boolean; } declare const Box: React.FunctionComponent; export default Box;