import { default as React } from 'react'; import { BoxContainerProps } from './types'; export default function BoxContainer({ id, children, a11y, className, onClick, onDblClick, onMouseIn, onMouseOut, onFocus, onBlur, }: BoxContainerProps): React.JSX.Element;