import { type NostrEvent, NostrLink, type Thread, type EventBuilder, LinkScope, type TaggedNostrEvent } from ".."; /** * Utility class which exports functions used in NIP-10 */ export declare class Nip10 { /** * Reply to an event using NIP-10 tagging */ static replyTo(ev: TaggedNostrEvent, eb: EventBuilder): void; static parseThread(ev: NostrEvent): Thread | undefined; /** * Parse a thread from a parsed set of tag links */ static fromLinks(links: Array): Thread | undefined; /** * Convert a link to an event tag */ static linkToTag(link: NostrLink, withScope?: LinkScope): string[]; /** * Converts a link scope to a marker string */ static scopeToMarker(scope?: LinkScope): "root" | "reply" | "mention" | undefined; } //# sourceMappingURL=nip10.d.ts.map