///
import type { DescriptionPropTypes } from './Description';
import type { IconButtonPropTypes } from './IconButton';
import type { MainButtonPropTypes } from './MainButton';
import type { SwitchPropTypes } from './Switch';
type RightBoxPropTypes = React.FunctionComponent<{
hasFixedHeight: boolean;
}> & {
Description: React.FC;
IconButton: React.FC;
MainButton: React.FC;
Switch: React.FC;
};
declare const RightBox: RightBoxPropTypes;
export default RightBox;