import { EventEmitter } from '../../stencil-public-runtime'; export declare class RasaRating { /** * Instructional text for the rating component */ text: string; /** * List of rating options from Rasa */ options: string | { value: string; payload: string; }[]; /** * Customizable message from Rasa (Previously thankYouMessage) */ message: string; /** * Event emitted when a rating is selected */ ratingSelected: EventEmitter<{ value: string; payload: string; }>; /** * State to track the selected option */ selectedOption: string | null; /** * State to track if the user has voted */ hasVoted: boolean; componentDidLoad(): void; private handleOptionClick; private getParsedOptions; render(): any; }