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