import React from "react"; import { AvatarProps } from "../../navigation/Avatar"; type CommentRowProps = { isHighlighted?: boolean; avatar: Pick; status?: React.ReactNode; name: string; message: React.ReactNode; info: string; overlayButton?: React.ReactNode; largeText?: boolean; } & React.ComponentProps<"div">; export declare const CommentRow: ({ name, message, info, avatar, className, status, overlayButton, isHighlighted, largeText, ...rest }: CommentRowProps) => React.JSX.Element; export {}; //# sourceMappingURL=CommentRow.d.ts.map