import { WpInterface } from './wp.interface'; import { WpHttp } from '../classes/wp-http.class'; import { EndpointService } from './endpoint/endpoint.service'; import { AuthService } from './authentication/auth.service'; import { ConfigService } from './config/config.service'; import { PhotonService } from './photon/photon.service'; export declare class WpService implements WpInterface { private http; config: ConfigService; constructor(http: WpHttp, config: ConfigService); /** * Collection Service * @returns {EndpointService} */ collection(): EndpointService; /** * Model Service * @returns {EndpointService} */ model(): EndpointService; /** * Authenticate Service * @returns {AuthService} */ auth(): AuthService; /** * Photon Service */ photon(args?: any): PhotonService; }