import { Observable } from 'rxjs/Observable'; import { AuthInterface } from './auth.interface'; import { WpHttp } from '../../classes/wp-http.class'; import { ConfigService } from '../config/config.service'; export declare class AuthService implements AuthInterface { private http; private config; constructor(http: WpHttp, config: ConfigService); basic(username: string, password: string, remember?: boolean): Observable; cookies(): Observable; private login(keys, type); logout(): void; }