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