/// import { WithTheme } from "../types"; export declare function getThousands(target: number): string; export declare type StatProps = WithTheme<{ views?: number | null; comments?: number | null; }>; export declare function Stat({ views, comments, ...props }: StatProps): JSX.Element;