export default Tweet; declare function Tweet({ attributes, html, url, userName, userScreenName, date, userProfileImageUrl, image, more, playable }: { attributes: any; html: any; url: any; userName: any; userScreenName: any; date: any; userProfileImageUrl: any; image: any; more: any; playable: any; }): JSX.Element; declare namespace Tweet { namespace propTypes { const attributes: PropTypes.Requireable; const html: PropTypes.Validator; const url: PropTypes.Validator; const userProfileImageUrl: PropTypes.Validator; const userName: PropTypes.Validator; const userScreenName: PropTypes.Validator; const date: PropTypes.Validator; const image: PropTypes.Requireable; const more: PropTypes.Requireable; const playable: PropTypes.Requireable; } namespace defaultProps { const platform: string; } } import PropTypes from "prop-types";