import { IManagementClientConfig } from '../config'; import { Identifiers } from '../models'; import { ContentManagementQueryService } from '../services'; export declare class ContentItemExternalIdIdentifierQuery { protected config: IManagementClientConfig; protected queryService: ContentManagementQueryService; protected buildResult: (config: IManagementClientConfig, queryService: ContentManagementQueryService, identifier: Identifiers.ContentItemIdentifier) => TResult; constructor(config: IManagementClientConfig, queryService: ContentManagementQueryService, buildResult: (config: IManagementClientConfig, queryService: ContentManagementQueryService, identifier: Identifiers.ContentItemIdentifier) => TResult); byItemExternalId(externalId: string): TResult; }