/** NIP-01 Nostr event. */ export interface NostrEvent { /** 32-bytes lowercase hex-encoded sha256 of the serialized event data. */ id: string; /** 32-bytes lowercase hex-encoded public key of the event creator */ pubkey: string; /** Unix timestamp in seconds. */ created_at: number; /** Integer between 0 and 65535. */ kind: number; /** Matrix of arbitrary strings. */ tags: string[][]; /** Arbitrary string. */ content: string; /** 64-bytes lowercase hex of the signature of the sha256 hash of the serialized event data, which is the same as the `id` field. */ sig: string; } //# sourceMappingURL=NostrEvent.d.ts.map