import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export declare class NgxStarsComponent implements OnInit, OnDestroy { maxStars: number; initialStars: number; readonly: boolean; size: number; customSize: string; color: string; animation: boolean; animationSpeed: number; customPadding: string; wholeStars: boolean; customStarIcons: { empty: string; half: string; full: string; }; rtl: boolean; ratingOutput: EventEmitter; rating: number; editableStars: EditableStar[]; animationInterval: any; animationRunning: boolean; private customCssClasses; private customClassIdentifier; ngOnInit(): void; ngOnDestroy(): void; private setupStarImages; private createCssClass; starPadding(): { [p: string]: string; }; starColorAndSize(): { [p: string]: string; }; private starColor; starSize(): { [p: string]: string; }; zeroStarLeft(): string; private safeSize; starAnimation(): void; cancelStarAnimation(): void; setRating(rating: number): void; onStarHover(event: MouseEvent, clickedStar: EditableStar): void; onStarClick(event: MouseEvent, clickedStar: EditableStar): void; onZeroStarClick(): void; onZeroStarHover(): void; onStarsUnhover(): void; private clickedInFirstHalf; noop(): void; private getStarClass; getAriaLabel(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare type StarType = 'empty' | 'half' | 'full'; export declare class EditableStar { position: number; classname: string; constructor(position: number); }