import { FC } from 'react';

type IconCountTypes = {
    /** The icon of the counter */
    icon: JSX.Element;
    /** The text next to the icon */
    count?: string;
};
declare const Count: FC<IconCountTypes>;

export { Count };
