export namespace sizeSmall { const maxHeight: string; const maxWidth: string; } export namespace sizeMedium { const maxHeight_1: string; export { maxHeight_1 as maxHeight }; const maxWidth_1: string; export { maxWidth_1 as maxWidth }; } export namespace sizeLarge { const maxHeight_2: string; export { maxHeight_2 as maxHeight }; const maxWidth_2: string; export { maxWidth_2 as maxWidth }; } export default Tile; declare function Tile({ children, attributes, image, imageDark, byline, alt, onClick, color, bgColor, align, textLeft, aboveTheFold, onlyImage, singleColumn }: { children: any; attributes: any; image: any; imageDark: any; byline: any; alt: any; onClick: any; color: any; bgColor: any; align: any; textLeft: any; aboveTheFold: any; onlyImage: any; singleColumn: any; }): JSX.Element; declare namespace Tile { 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>; const color: PropTypes.Requireable; const bgColor: PropTypes.Requireable; const align: PropTypes.Requireable; const aboveTheFold: PropTypes.Requireable; const onlyImage: PropTypes.Requireable; } namespace defaultProps { const alt_1: string; export { alt_1 as alt }; } } import PropTypes from "prop-types";