import NodeCache from "node-cache"; import { type DNSList } from "../utils/dns.js"; declare class DNSCache { cache: NodeCache; constructor(); get(topLevelDomain: string): Promise; set(dnsList: DNSList): Promise; flush(): void; } export declare const dnsCache: DNSCache; export {};