export declare class EnvironmentService {
    environment: string;
    constructor();
    readonly isDevelopment: boolean;
    readonly isStaging: boolean;
    readonly isProduction: boolean;
}
