import { CryptoDNSConfigurationI, CryptoDNSEntryI } from './types/types';
export declare const lookup: (domain: string, config?: CryptoDNSConfigurationI) => Promise<CryptoDNSEntryI[]>;
export declare const lookupMany: (domain: string, currency: string, config?: CryptoDNSConfigurationI) => Promise<CryptoDNSEntryI[]>;
export declare const lookupOne: (domain: string, currency: string, config?: CryptoDNSConfigurationI) => Promise<string | null>;
