export declare class Env {
    /**
     * Clear the cache of the loaded file .env (if it exists).
     *
     * @static
     * @memberof Config
     */
    static clearCache(): void;
    static getEnvironmentName(): string;
    static get(key: string): string | undefined;
    private static dotEnv;
    private static loadEnv;
}
