import { MeetExpectation } from '../../../../modules/gql/generated/types'
import { ReviewsProps } from '../../interfaces'
export type ReviewsStatsProps = {
reviews: ReviewsProps['item']['reviews']
onSelectFilter: (
startCount?: number | null,
expect?: MeetExpectation | null
) => void
}