export interface RatingProps { value: number; onChange?: (v: number) => void; max?: number; size?: number; /** Allow half-star resolution. */ half?: boolean; readOnly?: boolean; showValue?: boolean; className?: string; } export declare function Rating({ value, onChange, max, size, half, readOnly, showValue, className, }: RatingProps): import("react/jsx-runtime").JSX.Element;