/** * @interface IConfig Represents the configuration object. */ export interface IConfig { [key: string]: unknown; } export default IConfig;