export interface DNSList { description: string; publication: string; services: [string[], string[]]; version: string; } export declare const fetchDNSList: () => Promise; export declare const fetchIpv4List: () => Promise; export declare const fetchIpv6List: () => Promise; export declare const fetchASNList: () => Promise;