export type RatingSize = 'sm' | 'md' | 'lg'; export interface RatingProps { value: number; showCount?: boolean; count?: number; size?: RatingSize; className?: string; onCountClick?: () => void; } export declare function Rating({ value, showCount, count, size, className, onCountClick, }: RatingProps): import("react/jsx-runtime").JSX.Element; export default Rating; //# sourceMappingURL=Rating.d.ts.map