interface ConfigurationBase { get(): any | null; validate(config: any): boolean; isValid(): boolean; } export default ConfigurationBase;