import { PropsWithStyle } from '../../index.ts'; import { SfRatingSize } from '@storefront-ui/shared'; export { SfRatingSize }; export interface SfRatingProps extends PropsWithStyle { value?: number; max?: number; size?: `${SfRatingSize}`; halfIncrement?: boolean; ariaLabel?: string; }