import { configType, Enum } from './constants';
export declare class ConfigService {
    private envConfig;
    constructor(path?: string);
    get(key: string): string;
    getWithType<T>(key: string, type: configType, enumObject?: Enum<T>): any;
    reload(path?: string): void;
}
