import * as React from 'react'; interface BoxContainerProps { header: { left: JSX.Element; center: JSX.Element; right: JSX.Element; }; state: 'show' | 'edit'; contentEdit: JSX.Element; contentShow: JSX.Element; } declare const BoxContainer: React.FC; export default BoxContainer;