/**
 * GenTeaserTitle module.
 * @module @massds/mayflower-react/GenTeaserTitle
 * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
 */
import React from 'react';
import { DecorativeLinkProps } from '../DecorativeLink';
export interface GenTeaserTitleProps {
    /** The heading level of the title */
    level?: string | number;
    /** The title object (text, info, href) */
    title?: DecorativeLinkProps;
    /** React children to render */
    children?: React.ReactNode;
}
/**
 * Title Link
 */
declare const GenTeaserTitle: (props: GenTeaserTitleProps) => any;
export default GenTeaserTitle;
