/// import { HightlightType } from '../../../types'; export declare type TTestimonial = { company: string; id: string; image: string; text: string; }; export declare type DetailedTestimonialProps = { id: string; testimonials: TTestimonial[]; link: string; state?: any; highlight?: HightlightType; hightlightBorderColor?: string; cardTitle?: string; timer?: number; }; declare const DetailedTestimonialDesktopView: ({ testimonials, highlight, hightlightBorderColor, cardTitle, timer, }: DetailedTestimonialProps) => JSX.Element | null; export default DetailedTestimonialDesktopView;