import { SfProgressSize } from '@storefront-ui/shared'; import { PropsWithChildren } from 'react'; import { PropsWithStyle } from '../../index.ts'; export { SfProgressSize }; export interface SfProgressCircularProps extends PropsWithStyle, PropsWithChildren { value?: number; size?: `${SfProgressSize}`; ariaLabel?: string; circleClassName?: string; }