import { Interpolation, Theme } from '@emotion/react'; import { FC } from 'react'; export type CounterProps = { image: string; value: number | string; imageCss?: Interpolation; extraCss?: Interpolation; onClick?: (e: any) => void; }; export type CountersProps = { counters: CounterProps[]; lineSize: number; }; export declare const Counters: FC;