import { Observable } from 'rxjs'; import { IDeliveryClientConfig } from '../../config'; import { ElementResponses } from '../../models'; import { QueryService } from '../../services'; import { BaseElementQuery } from './base-element-query.class'; export declare class ElementQuery extends BaseElementQuery { protected config: IDeliveryClientConfig; protected queryService: QueryService; private typeCodename; private elementCodename; constructor(config: IDeliveryClientConfig, queryService: QueryService, typeCodename: string, elementCodename: string); /** * Gets the runnable Observable */ getObservable(): Observable; /** * Gets 'Url' representation of query */ getUrl(): string; }