import { PropsWithChildren } from 'react'; import { PropsWithStyle } from '../../index.ts'; import { SfCounterSize } from '@storefront-ui/shared'; export { SfCounterSize }; export interface SfCounterProps extends PropsWithChildren, PropsWithStyle { size?: `${SfCounterSize}`; pill?: boolean; }