import React from "react"; export interface PartnerMonthlyStatsProps { numeric?: number; title: string; } declare const PartnerMonthlyStats: ({ numeric, title }: PartnerMonthlyStatsProps) => React.JSX.Element; export default PartnerMonthlyStats;