import * as React from 'react'; type BoxProps = { show?: boolean; className?: string; displayName?: string; children: any; }; declare class Box extends React.Component { static displayName: string; render(): React.DetailedReactHTMLElement; } export default Box;