/// declare type Testimonial = Readonly<{ quote: string; author: string; }>; export declare type TestimonialsProps = Readonly<{ illustration: JSX.Element; testimonials: Array; a11y: Readonly<{ mainTitle: string; prev: string; next: string; }>; }>; export declare const Testimonials: ({ illustration, testimonials, a11y }: TestimonialsProps) => JSX.Element; export {};