UNPKG

@botonic/react

Version:

Build Chatbots using React

12 lines (11 loc) 425 B
import { RatingType } from './types'; interface RatingSelectorProps { color: string; isSent?: boolean; onRatingChange: (newRating: number) => void; ratingValue: number; ratingType: RatingType; valueSent?: number; } export declare const RatingSelector: ({ color, isSent, onRatingChange, ratingValue, ratingType, valueSent, }: RatingSelectorProps) => import("react/jsx-runtime").JSX.Element; export {};