import React from "react"; import { SubCommentsV2Props } from "./sub-comments-v2"; export type CommentTypeV2 = { amount?: number | string; claps?: 0 | 1; comment?: string | null; donationDate?: string | number; firstName?: string; id?: number; isAnonymous?: boolean; kisses?: 0 | 1; lastName?: string; likes?: 0 | 1; message?: string; prays?: 1 | 0; profileImage?: string | null; tears?: 0 | 1; thumbs?: 0 | 1; userId?: number | string | null; campaignCreator?: string; subComment?: Array; }; export declare const checkLastElement: (key: number, itemLength: number) => boolean; interface ComboFieldProps { comments: Array; }>; showMore?: () => void; } declare const CommentSectionV2: ({ comments, showMore }: ComboFieldProps) => React.JSX.Element; export default CommentSectionV2;