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, isPrivate, editLink, editState, onDelete, }: Props) => JSX.Element>; export default SMTestimonial; export declare const SMTestimonialStyled: { Wrapper: import("styled-components").StyledComponent<"div", any, { textavailable: string; }, never>; ImageWrapper: import("styled-components").StyledComponent<"div", any, {}, never>; Image: import("styled-components").StyledComponent<"img", any, {}, never>; Details: import("styled-components").StyledComponent<"div", any, {}, never>; CompanyName: import("styled-components").StyledComponent<"h3", any, {}, never>; Text: import("styled-components").StyledComponent<"pre", any, {}, never>; };