import NodeCache from "node-cache"; export declare class IPV4Cache { ipCache: NodeCache; maskCache: NodeCache; constructor(); get(ipAddress: string): Promise; reset(): Promise; flush(): void; }