import { LitElement } from 'lit'; export declare class OkTestimonial extends LitElement { static styles: import("lit").CSSResult; /** Nº de estrellas (0–5). Si 0/undefined no se muestran. */ rating: number; /** Nombre del autor. */ author?: string; /** Rol / empresa del autor (atributo HTML: author-role; `role` está reservado por ARIA). */ authorRole?: string; /** URL del avatar. Si no hay, se muestran las iniciales del autor. */ avatar?: string; /** Cristal esmerilado. */ glass: boolean; private initials; render(): unknown; } declare global { interface HTMLElementTagNameMap { 'ok-testimonial': OkTestimonial; } }