import { IRenderOptions } from '../base/render-options'; import { NDKUserProfile } from '@nostr-dev-kit/ndk'; import { ParsedLivestreamEvent } from './livestream-utils'; import { NCStatus } from '../base/base-component/nostr-base-component'; export interface RenderLivestreamOptions extends IRenderOptions { author: NDKUserProfile | null; parsedLivestream: ParsedLivestreamEvent | null; showParticipants: boolean; showParticipantCount: boolean; autoPlay: boolean; participantProfiles: Map; participantsStatus: NCStatus; } export declare function renderLivestream(options: RenderLivestreamOptions): string;