/**
 * GenTeaserStat module.
 * @module @massds/mayflower-react/GenTeaserStat
 * @requires module:@massds/mayflower-assets/scss/03-organisms/gen-teaser
 */
import React from 'react';
export interface GenTeaserStatProps {
    /** Expects to receive children directly (e.g. `<span><b>103 item</b></span>`). */
    children: React.ReactNode;
}
/**
 * Stat info
 */
declare const GenTeaserStat: (props: GenTeaserStatProps) => any;
export default GenTeaserStat;
