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