export = DirCache; /** * Stores templates in the local file system * * @augments TemplateCache */ declare class DirCache extends TemplateCache { constructor(storagePath: any, config?: {}); storagePath: any; } import TemplateCache = require("../template-cache");