declare abstract class Resolver { private cache; resolve(type: string, id: string): Promise; abstract get(type: string, id: string): Promise; } export default Resolver; //# sourceMappingURL=resolver.d.ts.map