import React from 'react'; import { ExtendedFlexComponent, ExtendedFlexProps } from '../types'; type Props = { /** * The size of the text. */ readonly aspectSize?: 's' | 'm'; /** * The custom background color */ readonly bg?: string; /** * The number of items to display. */ readonly numberOfItems?: number; /** * The color variant. */ readonly variant?: 'blue' | 'green' | 'grey' | 'red' | 'yellow'; }; type CounterProps = ExtendedFlexProps; type CounterComponent = ExtendedFlexComponent; export { CounterComponent, CounterProps };