import ConfigInterface from "./ConfigInterface"; export default class Config implements ConfigInterface { protected configs: object; constructor(); get(path: string, defaultValue: any): any; set(path: string, value: any): object; }