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