import { SerializedStyles } from '@emotion/core'; import { ReactElement } from 'react'; import { IconImage } from '../../Icon'; export interface BoxProps { styles?: SerializedStyles; icon?: IconImage; rotation?: '0' | '90'; label: string; children: ReactElement; } export declare function Box(props: BoxProps): JSX.Element; export declare namespace Box { var defaultProps: Partial; }