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