import type { NostrEvent } from "../nostr"; import { NostrLink } from "../nostr-link"; export declare function parseZap(zapReceipt: NostrEvent): ParsedZap; export interface ParsedZap { id: string; amount: number; zapService: string; valid: boolean; errors: Array; anonZap: boolean; event?: NostrLink; receiver?: string; content?: string; sender?: string; pollOption?: number; created_at: number; /** * A list of targets this zap is zapping */ targetEvents: Array; } //# sourceMappingURL=nip57.d.ts.map