export interface GenTeaserEmailProps {
    /** The email address. */
    email: string;
    /** Details around contacting the provided email. */
    details?: string | object;
}
/**
 * Email
 */
declare const GenTeaserEmail: (props: GenTeaserEmailProps) => any;
export default GenTeaserEmail;
