/** * * Testimonial component * * */ import { SkhemataBase, CSSResult } from '@skhemata/skhemata-base'; /** * Use the customElement decorator to define your class as * a custom element. Registers as an HTML tag. */ export declare class SkhemataTestimonial extends SkhemataBase { carouselInterval: number; activeTestimonial: number; static get scopedElements(): { 'fa-icon': any; }; static get styles(): CSSResult[]; firstUpdated(): Promise; /** * Click function for carousel dots * */ handleCarouselDotClick: (event: any) => void; /** * Make a testimonial active */ makeActive: (elementId: any) => void; /** * Template for carousel items * */ carouselItem: (testimonials?: any) => import("lit-html").TemplateResult<1>; /** * Template for carousel dots * */ carouselDots: (data?: any) => import("lit-html").TemplateResult<1>; render(): import("lit-html").TemplateResult<1>; }