import React from 'react'; interface Comment { id: string; text: string; author: string; createdAt: Date; } interface CommentSectionProps { comments: Comment[]; onAddComment: (text: string) => void; } export declare const CommentSection: React.FC; export {};