@botonic/react
Version:
Build Chatbots using React
12 lines (11 loc) • 425 B
TypeScript
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 {};