import { IContentManagementClientConfig } from '../../config'; import { ContentManagementQueryService } from '../../services'; export declare class ProjectIdIdentifierQuery { protected config: IContentManagementClientConfig; protected queryService: ContentManagementQueryService; protected buildResult: (config: IContentManagementClientConfig, queryService: ContentManagementQueryService, projectId: string) => TResult; constructor(config: IContentManagementClientConfig, queryService: ContentManagementQueryService, buildResult: (config: IContentManagementClientConfig, queryService: ContentManagementQueryService, projectId: string) => TResult); /** * For given Project by id * @param projectId ProjectId */ forProjectId(projectId: string): TResult; }