import React from "react"; import { Testimonial } from "../../types"; interface TestimonialCardProps { testimonial: Omit; theme?: "light" | "dark" | "gradient" | "minimal"; index?: number; variant?: "default" | "compact" | "detailed"; } export declare function TestimonialCard({ testimonial, theme, index, variant, }: TestimonialCardProps): React.JSX.Element; export {};