import { Facade } from './facade'; export declare class Env extends Facade { static get(name: string): string | undefined; static exists(name: string): boolean; static production(): boolean; static dev(): boolean; static test(): boolean; }