export default Tile; declare function Tile({ count, image, imageDark, alt, onClick, aboveTheFold, byline, children, bgColor: tileBgColor, color: tileColor, outline: tileOutlineColor, bigger: tileBigger }: { count: any; image: any; imageDark: any; alt: any; onClick: any; aboveTheFold: any; byline: any; children: any; bgColor: any; color: any; outline: any; bigger: any; }): JSX.Element; declare namespace Tile { namespace propTypes { const bigger: PropTypes.Requireable; const color: PropTypes.Requireable; const bgColor: PropTypes.Requireable; const outline: PropTypes.Requireable; const count: PropTypes.Requireable; const image: PropTypes.Requireable; const alt: PropTypes.Requireable; const onClick: PropTypes.Requireable<(...args: any[]) => any>; const aboveTheFold: PropTypes.Requireable; const byline: PropTypes.Requireable; const children: PropTypes.Requireable; } } import PropTypes from "prop-types";