export type NuxtRatingProps = {
  ratingStep?: number
  ratingValue?: number
  roundStartRating?: boolean
  activeColor?: string | string[]
  inactiveColor?: string
  skeletonColor?: string
  ratingCount?: number
  ratingContent?: number[]
  ratingSize?: number | string
  ratingSpacing?: number
  readOnly?: boolean
  inline?: boolean
  borderColor?: string
  borderWidth?: number
  roundedCorners?: boolean
  clearable?: boolean
}
