export type RatingTheme = "light" | "dark"; export type RatingSize = "sm" | "md" | "lg"; export interface RatingProps extends Record { label?: string; hint?: string; value?: number; max?: number; disabled?: boolean; readonly?: boolean; name?: string; showValue?: boolean; icon?: string; theme?: RatingTheme; size?: RatingSize; allowReset?: boolean; ariaLabel?: string; } export interface RatingChangeDetail { value: number; } export declare function registerRatingElement(): CustomElementConstructor | undefined; //# sourceMappingURL=rating.d.ts.map