import { Identifiers } from '../models/identifiers'; import { IManagementClientConfig } from '../config'; import { ContentManagementQueryService } from '../services'; export declare class ProjectIdentifierQuery { protected config: IManagementClientConfig; protected queryService: ContentManagementQueryService; protected buildResult: (config: IManagementClientConfig, queryService: ContentManagementQueryService, itentifier: Identifiers.ProjectIdentifier) => TResult; constructor(config: IManagementClientConfig, queryService: ContentManagementQueryService, buildResult: (config: IManagementClientConfig, queryService: ContentManagementQueryService, itentifier: Identifiers.ProjectIdentifier) => TResult); /** * For given Project by id * @param projectId ProjectId */ projectId(projectId: string): TResult; }