import React from "react"; export type SubCommentsV2Props = { profileImage: string; firstName?: string; lastName?: string; comment: string; }; declare const SubCommentsV2: ({ comments, }: { comments: Array; }) => React.JSX.Element; export default SubCommentsV2;