import { IRenderOptions } from '../base/render-options'; import { NDKUserProfile } from '@nostr-dev-kit/ndk'; export interface RenderPostOptions extends IRenderOptions { author: NDKUserProfile | null | undefined; date: string; shouldShowStats: boolean; stats: { replies: number; likes: number; } | null; statsLoading: boolean; htmlToRender: string; } export declare function renderPost(options: RenderPostOptions): string; export declare function renderEmbeddedPost(noteId: string, authorProfile: { displayName?: string; image?: string; nip05?: string; } | undefined, date: string, content: string): string;