import React from 'react'; declare type Props = { id: string; image: string; company: string; text?: string; isPrivate?: boolean; editLink?: string; editState?: object; onDelete?: (id: string) => void; }; declare const SMTestimonial: React.MemoExoticComponent<({ id, image, company, text }: Props) => JSX.Element>; export default SMTestimonial;