import React from "react"; export interface StatisticsProps extends React.HTMLProps { stats: Array<{ id: string; label: string; value: string; logo: string; }>; title: string; dark?: boolean; } declare function Statistics({ title, stats, className, dark, ...rest }: StatisticsProps): React.JSX.Element; export default Statistics;