import React from "react"; export interface Comment { id: string; author: string; text: string; createdAt?: string; replies?: Comment[]; } export interface GlassCommentThreadProps extends React.HTMLAttributes { comments: Comment[]; onReply?: (parentId: string, text: string) => void; } export declare function GlassCommentThread({ comments, onReply, className, ...props }: GlassCommentThreadProps): import("react/jsx-runtime").JSX.Element; export default GlassCommentThread; //# sourceMappingURL=GlassCommentThread.d.ts.map