import { type CSSProperties } from 'react'; type StarRatingProps = { value?: number; defaultValue?: number; onChange?: (value: number) => void; max?: number; label?: string; name?: string; disabled?: boolean; readOnly?: boolean; size?: number | string; gap?: number | string; onColor?: string; offColor?: string; getRatingLabel?: (value: number, max: number) => string; className?: string; style?: CSSProperties; }; declare const StarRating: ({ value, defaultValue, onChange, max, label, name, disabled, readOnly, size, gap, onColor, offColor, getRatingLabel, className, style, }: StarRatingProps) => import("react/jsx-runtime").JSX.Element; export { StarRating }; export type { StarRatingProps };