import { Observable } from 'rxjs'; import { IDeliveryClientConfig } from '../../config'; import { ContentItem, ItemResponses } from '../../models'; import { QueryService } from '../../services'; import { BaseItemQuery } from './base-item-query.class'; export declare class SingleItemQuery extends BaseItemQuery> { protected config: IDeliveryClientConfig; protected queryService: QueryService; private codename; constructor(config: IDeliveryClientConfig, queryService: QueryService, codename: string); /** * Gets the runnable Observable */ toObservable(): Observable>; /** * Gets 'Url' representation of query */ getUrl(): string; }