/** * Configuration is an interface that is used to obtain configurable values */ export interface Configuration { get(path?: string[]): T | undefined; set(path: string[], value: unknown): void; } /** * Useful for shimming Components into ComponentRegistrations */ export declare const noOpConfiguration: Configuration;