import React, { MouseEvent } from 'react'; import { HightlightType } from '../../../types'; export declare const arrowClickHandler: (e: MouseEvent) => void; declare type TestimonialProps = { id: string; company: string; image: string; link: string; }; declare type Props = { id: string; link: string; testimonials: TestimonialProps[]; horizontalView?: boolean; highlight?: HightlightType; hightlightBorderColor?: string; cardTitle?: string; }; declare const TestimonialContainer: React.MemoExoticComponent<({ id, link, testimonials, horizontalView, cardTitle, highlight, hightlightBorderColor, }: Props) => JSX.Element>; export default TestimonialContainer;