import { NDKEvent } from '@nostr-dev-kit/ndk'; import { NostrService } from '../common/nostr-service'; export type ContentItem = { type: 'text' | 'image' | 'gif' | 'video' | 'link' | 'embedded-note'; value?: string; noteId?: string; }; export declare function parseText(text: string, post: NDKEvent | null, embeddedPosts: Map, nostrService: NostrService): Promise;