/// import { Theme, ThemeFontVariant, ThemeIntent } from "../types"; export declare type CarouselTestimonial = { description: string; name: string; position: string; }; export declare type CtTestimonialsProps = { testimonials: CarouselTestimonial[]; theme?: Theme; intent?: ThemeIntent; fontVariant?: ThemeFontVariant; }; declare function CtTestimonials({ testimonials, theme, intent, fontVariant }: CtTestimonialsProps): JSX.Element; declare namespace CtTestimonials { var defaultProps: { theme: Theme; intent: ThemeIntent; }; } export default CtTestimonials;