/**
 * GenTeaserImage module.
 * @module @massds/mayflower-react/GenTeaserImage
 * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
 */
import React from 'react';
import { ImageProps } from '../Image';
export interface GenTeaserImageProps {
    /** Either a string or react component */
    img?: ImageProps;
    /** React children to render */
    children?: React.ReactNode;
}
/**
 * Image
 */
declare const GenTeaserImage: (props: GenTeaserImageProps) => any;
export default GenTeaserImage;
