export default PlacementArea; declare function PlacementArea(props: any): React.JSX.Element; declare namespace PlacementArea { namespace propTypes { let children: PropTypes.Requireable; let x: PropTypes.Requireable; let y: PropTypes.Requireable; let width: PropTypes.Requireable; let height: PropTypes.Requireable; let className: PropTypes.Requireable; let surroundStyle: PropTypes.Requireable; } namespace defaultProps { let children_1: null; export { children_1 as children }; let x_1: string; export { x_1 as x }; let y_1: string; export { y_1 as y }; let width_1: string; export { width_1 as width }; let height_1: string; export { height_1 as height }; let className_1: string; export { className_1 as className }; let surroundStyle_1: {}; export { surroundStyle_1 as surroundStyle }; } } import React from 'react'; import PropTypes from 'prop-types';