export default Teaser; declare function Teaser({ children, attributes, onClick }: { children: any; attributes: any; onClick: any; }): JSX.Element; declare namespace Teaser { namespace propTypes { const children: PropTypes.Validator; const attributes: PropTypes.Requireable; const onClick: PropTypes.Requireable<(...args: any[]) => any>; } const defaultProps: {}; } import PropTypes from "prop-types";