import React from 'react';
import { UserProfileRank, UserProfileTheme } from "../types";
export type UserStatsProps = {
    themeName: UserProfileTheme;
    rank?: UserProfileRank;
    numberOfPosts: number;
};
declare const UserStats: ({ themeName, rank, numberOfPosts, }: UserStatsProps) => React.JSX.Element;
export { UserStats };
