import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * Rating field widget - provides a star rating input * Supports numeric values from 0 to max (default 5) */ export declare function RatingField({ value, onChange, field, readonly, className, error, ...props }: FieldWidgetComponentProps): React.JSX.Element;