import { NDKUserProfile } from '@nostr-dev-kit/ndk'; import { IRenderOptions } from '../base/render-options'; export interface Stats { notes: number; replies: number; follows: number; followers: number; zaps: number; relays: number; } export interface RenderProfileOptions extends IRenderOptions { npub: string; userProfile: NDKUserProfile; isStatsLoading: boolean; isStatsFollowersLoading: boolean; isStatsFollowsLoading: boolean; isZapsLoading: boolean; stats: Stats; showFollow: boolean; showNpub: boolean; } export declare function renderProfile(options: RenderProfileOptions): string;