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