import { default as RatingCard } from './rating-card.vue'; import { booleanish } from '../../types'; export declare enum PuikRatingCardVariants { Extended = "extended", Compact = "compact" } export interface RatingCardProps { id?: string; variant?: `${PuikRatingCardVariants}`; totalRatings: number[] | string; showTotalRatings?: booleanish; dataTest?: string; ariaLabel?: string; } export type RatingCardInstance = InstanceType;