import { NDKEvent, NDKUserProfile } from '@nostr-dev-kit/ndk'; export interface ReplyItem { id: string; authorKey: string; authorName: string; authorImage: string; contentHtml: string; } export declare function formatReplyText(content: string): string; export declare function buildReplyItem(reply: NDKEvent, profile: NDKUserProfile | null | undefined): ReplyItem;