import type { JSX } from 'react'; export type StarsProps = { max?: number; name?: string; value?: number; onChange: (value: number) => void; }; export declare function Stars({ max, onChange, value }: StarsProps): JSX.Element;