import type { Maybe } from "@welshman/lib"; /** * NIP-05: mapping nostr public keys to DNS-based internet identifiers (e.g. * `name@example.com`), resolved via each domain's `/.well-known/nostr.json`. */ export type Handle = { nip05: string; pubkey?: string; nip46?: string[]; relays?: string[]; }; export declare function queryProfile(nip05: string): Promise>; export declare const displayNip05: (nip05: string) => string; export declare const displayHandle: (handle: Handle) => string; //# sourceMappingURL=Handles.d.ts.map