import { isNip05, NIP05_REGEX } from "nostr-tools/nip05"; /** Returns the name and domain for a NIP-05 address */ export declare function parseNIP05Address(address: string): { name: string; domain: string; } | null; export { isNip05, NIP05_REGEX };