import { Ept } from "../ept"; export declare const Cache: { create: typeof create; }; export declare type Cache = ReturnType; declare function create(timeout?: number): { get: (filename: string) => Promise; destroy: () => void; }; export {}; //# sourceMappingURL=cache.d.ts.map