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