export declare class InternetIdentifier {
    static verify(identifier: string, pubkey: string): Promise<boolean>;
    static parseIdentifier(identifier: string): {
        name: string;
        domain: string;
    };
    static getRelays(identifier: string, pubkey: string): Promise<string[]>;
}
