import React from "react"; import { Testimonial, TestimonialsProps } from "../../types"; interface CarouselLayoutProps extends Omit { testimonials: Omit[]; } export declare function CarouselLayout({ testimonials, theme, className, }: CarouselLayoutProps): React.JSX.Element; export {};