/**
 * GenTeaserDate module.
 * @module @massds/mayflower-react/GenTeaserDate
 * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
 */
import React from 'react';
export interface GenTeaserDateProps {
    /** Either a formatted date or a formatted date with a label */
    date?: string | number;
    /** React children to render */
    children?: React.ReactNode;
}
/**
 * Date
 */
declare const GenTeaserDate: (props: GenTeaserDateProps) => any;
export default GenTeaserDate;
