import { IExtensionConfig } from './IExtension'; export declare class ExtensionConfig implements IExtensionConfig { private readonly configKey; /** * @param configKey - The key used in Config.Extensions.extensions map (matches the extension's folder name) */ constructor(configKey: string); getConfig(): C; }