import * as React from 'react'; import {PropsWithChildren} from "react"; export interface TestimonialListProps { dataHook?: string; className?: string; cols?: number; testimonials?: TestimonialType[]; } export default class TestimonialList extends React.Component> {} export type TestimonialType = { avatar: React.ReactNode; text: string; authorName: string; };