export declare class BuildCache { private static queue; private static enqueue; static get(key: string): Promise; static getWithDefault(key: string, defaultValue: (() => T) | T): Promise; static getWithSetDefault(key: string, defaultValue: (() => T) | T): Promise; static set(key: string, value: unknown): Promise; }