import { PropsWithChildren } from "react"; declare function Testimonial({ children, img, job, name, className, }: PropsWithChildren<{ img?: string; name?: string; job?: string; className?: string; }>): JSX.Element; export default Testimonial;