import { type BgVariant } from '../../utils/bg.js'; export interface TestimonialsFeaturedProps { headline?: string; quote: string; author: string; role?: string; avatar?: string; rating?: number; bg?: BgVariant; className?: string; } export declare function TestimonialsFeatured({ headline, quote, author, role, avatar, rating, bg, className, }: TestimonialsFeaturedProps): import("react/jsx-runtime").JSX.Element;