import { Http } from '@angular/http'; import 'rxjs/add/operator/map'; import { Observable } from 'rxjs/Observable'; /** * Service reponsible for managing the company's primary brand color * @author Sean Perkins * * @export * @class BrandService */ export declare class BrandService { private http; private static DEFAULT_BRAND_COLOR; private brandColor; constructor(http: Http); /** * Sets the primary brand color from the backend-server * * @returns {Observable} Observable of the loaded brand color * * @memberOf BrandService */ setBrand(): Observable; /** * Returns the organization's brand primary color * * @readonly * @type {string} */ readonly color: string; }