import { ContextMap } from "./Context.js"; interface ContextProvider { name: string; getOverrides(): Promise; } export default ContextProvider;