import { default as React } from 'react'; export type comment = { hash?: string; title?: string; content?: string; fullName?: string; firstName?: string; lastName?: string; middleName?: string; avatar?: string; aboutAuthor?: string; date?: string; group?: string; parentHash?: string; nestedComments?: comment[]; parentName?: string; }; export interface CommentProps { comment?: comment | undefined; response?: (value: any) => void; } export declare const Comment: React.FC;