/**
 * GenTeaserEmphasis module.
 * @module @massds/mayflower-react/GenTeaserEmphasis
 * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
 */
import React from 'react';
export interface GenTeaserEmphasisProps {
    /** React children to render */
    children: React.ReactNode;
}
/**
 * Emphasis wrapper for Date and Orgs
 */
declare const GenTeaserEmphasis: (props: GenTeaserEmphasisProps) => any;
export default GenTeaserEmphasis;
