export interface TestimonialCardProps { quote: string; author: string; role?: string; rating?: number; className?: string; } export declare function TestimonialCard({ quote, author, role, rating, className, }: TestimonialCardProps): import("react/jsx-runtime").JSX.Element;