import { OnChanges, OnInit, EventEmitter, SimpleChanges } from '@angular/core'; import { RatingMetadata, RatingChangeEvent } from './types'; import * as i0 from "@angular/core"; export declare class RatingComponent implements OnInit, OnChanges { private presets; private i18n; preset?: string; props: Partial; resolvedProps: RatingMetadata; ratingChange: EventEmitter; hoverValue: number | null; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private resolveProps; get displayValue(): number; getStars(): number[]; groupLabel(): string; starLabel(position: number): string; /** * Roving tabindex: solo una estrella es tabbable. La estrella del valor * actual (o la primera si no hay valor) recibe `0`, el resto `-1`. */ getStarTabindex(position: number): number; /** Navegación con flechas: mueve el foco y selecciona la estrella vecina. */ onArrow(event: Event, delta: number): void; getStarIcon(position: number): string; getStarColor(position: number): string; onStarClick(position: number): void; onStarHover(position: number): void; onStarLeave(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }