import NodeCache from "node-cache"; import { CorreiosAPI } from "../repository/types/correios.types"; export declare class CacheManagerService { readonly cache: NodeCache; constructor(cache: NodeCache); populate(key: string, data: CorreiosAPI.Response): CorreiosAPI.Response | undefined; get(key: string): CorreiosAPI.Response | undefined; }