import { NameValueTag } from "applesauce-core/helpers"; import { AddressPointer, EventPointer, ProfilePointer } from "nostr-tools/nip19"; /** Returns a tag for an address pointer */ export declare function createATagFromAddressPointer(pointer: AddressPointer): NameValueTag; export type Nip10TagMarker = "root" | "reply" | "mention" | ""; /** Returns a tag for an event pointer with a marker*/ export declare function createETagWithMarkerFromEventPointer(pointer: EventPointer, marker?: Nip10TagMarker): NameValueTag; /** Returns a tag for an event pointer without a marker */ export declare function createETagFromEventPointer(pointer: EventPointer): NameValueTag; /** Returns a tag for an profile pointer */ export declare function createPTagFromProfilePointer(pointer: ProfilePointer): NameValueTag;