import { type Nip94Tags } from "./nip94"; /** * https://github.com/nostr-protocol/nips/blob/master/92.md impl */ export declare class Nip92 { /** * Read NIP-94 tags from `imeta` tag */ static parse(tag: Array): Nip94Tags; /** * Read NIP-94 tags from all `imeta` tags */ static parseAll(tags: Array>): Nip94Tags[]; } /** * Read NIP-94 tags from `imeta` tag */ export declare function readNip94TagsFromIMeta(tag: Array): Nip94Tags; export declare function nip94TagsToIMeta(meta: Nip94Tags): string[]; //# sourceMappingURL=nip92.d.ts.map