export interface EnvironmentConfigError extends Error { code: string; } export declare class EnvConfigErrorImpl implements EnvironmentConfigError { name: string; message: string; code: string; stack?: string; constructor(code: string, message: string); }