/// import { CounterProperties } from './counter.properties'; import './counter.styles.scss'; /** * Counter component * @description A component that renders a counter with a value and text to the right * @param {CounterProperties} properties * @returns A counter component */ export default function CounterComponent(properties: CounterProperties): JSX.Element;