/**
 * Error class used to raise an error whenever an environment object is being created with an environment value that
 * does not exist in the list of known environment names.
 */
export declare class InvalidEnvNameError extends Error {
    /**
     * Environment value that caused the error.
     */
    readonly value: string;
    constructor(value: string, message?: string);
}
//# sourceMappingURL=EnvConfigError.d.ts.map