import { LitElement } from 'lit'; import { SliderFormControlMixin } from '@blueprintui/components/forms'; declare const BpRating_base: typeof LitElement & SliderFormControlMixin; /** * ```typescript * import '@blueprintui/components/include/rating.js'; * ``` * * ```html * * * * * ``` * * @summary The rating input component is used to allow the user to select a rating value within a specified range of values. * @element bp-rating * @since 1.0.0 * @cssprop --background * @cssprop --selected-background * @event {InputEvent} input - occurs when the value changes * @event {InputEvent} change - occurs when the value changes */ export declare class BpRating extends BpRating_base { #private; static styles: CSSStyleSheet[]; render(): import("lit").TemplateResult<1>; connectedCallback(): void; } export {};