export default class NamespaceConfigs { constructor(configs: { [x: string]: string; }); get configs(): { [x: string]: string; }; get(key: string): string; getString(key: string): string; getNumber(key: string): number; getBoolean(key: string): boolean; getJSON(key: string): any; getDate(key: string): Date; }