import { ZapDetails } from './zap-utils'; export interface EnhancedZapDetails extends ZapDetails { authorName?: string; authorPicture?: string; authorNpub?: string; } export declare function renderZapEntry(zap: EnhancedZapDetails, index: number): string;