import { Headers } from '@angular/http'; import { ConfigInterface } from './config.interface'; export declare class ConfigService implements ConfigInterface { /** BaseUrl text e.g 'https://example.com */ baseUrl: string; /** Domain text e.g 'example.com' (useful for photon feature) */ domain: string; /** Log all http requests to console */ debug: boolean; /** Photon registered query argyments */ photonArgs: {}; private authType; private authKeys; constructor(baseUrl: string, photonOptions: any, debug: boolean); /** Get authentication key for HTTP Headers {cookies | basic auth} */ getAuth(): Headers; setAuth(keys: string, type: string): void; }