/// <reference types="react" />
declare type TextVariants = 'muted' | 'primary' | 'success' | 'info' | 'warning' | 'danger';
declare type Props = {
    variant?: TextVariants;
    title: string | JSX.Element;
    subtitle: string;
    desc: string;
};
export declare const FeaturedNumber: import("react").MemoExoticComponent<(props: Props) => JSX.Element>;
export {};
