/** * Klevu ratings component * * @prop rating - The rating value as a number to show * @prop ratingRange - The number of stars to show * @csspart rating-base The container for rating component * @csspart rating-star The star component */ export declare class KlevuRating { #private; /** * Rating value */ rating: number; /** * Number of stars to show */ ratingRange: number; render(): any; }