import { ZRating_Events, ZRating_Props } from '@zurich/dev-utils/code/Rating'; import { ToReactSlots } from './helperTypes'; export type ReactRating_Props = ToReactSlots & Partial<{ onChange: (payload: Required['change'], e: React.FormEvent) => void; }>; type ReactRating_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactRating_Type; export { Namespace as ReactRating };