import { IContentManagementClientConfig } from '../../config'; import { Identifiers } from '../../models'; import { ContentManagementQueryService } from '../../services'; export declare class WorkflowStepIdentifierQuery { protected config: IContentManagementClientConfig; protected queryService: ContentManagementQueryService; protected buildResult: (config: IContentManagementClientConfig, queryService: ContentManagementQueryService, identifier: Identifiers.WorkflowIdentifier) => TResult; constructor(config: IContentManagementClientConfig, queryService: ContentManagementQueryService, buildResult: (config: IContentManagementClientConfig, queryService: ContentManagementQueryService, identifier: Identifiers.WorkflowIdentifier) => TResult); /** * Id identifier * @param id If of the workflow step */ byWorkflowStepId(id: string): TResult; }