///
import type { CheckboxPropTypes } from './Checkbox';
import type { ImagePropTypes } from './Image';
type LeftBoxPropTypes = React.FunctionComponent<{
hasRightBox: boolean;
}> & {
Checkbox: React.FC;
Image: React.FC;
};
declare const LeftBox: LeftBoxPropTypes;
export default LeftBox;