export declare class Cache { constructor(path: string); path: string; put: (key: string, value: string) => void; get: (key: string) => string; }