interface NewStatisticProps { text?: string; readNum?: number; starNum?: number; style?: string; className?: string; active?: boolean; onClick?: (v: boolean) => void; showStarNum?: boolean; } declare const NewsStatistic: ({ text, readNum, starNum, active, onClick, showStarNum }: NewStatisticProps) => JSX.Element; export default NewsStatistic;