import { DataModels, ICorrelationExtensionAdapter, Identity } from '@5minds/processcube_engine_sdk'; import { CorrelationService } from '../../../Api/Services'; import { IdentityService } from '../../Iam'; export declare class CorrelationExtensionAdapter implements ICorrelationExtensionAdapter { private readonly correlationService; private readonly identityService; private readonly logger; constructor(correlationService: CorrelationService, identityService: IdentityService); getAll(options?: { identity?: Identity; includeProcessInstances?: boolean; offset?: number; limit?: number; sortSettings?: DataModels.Correlation.CorrelationSortSettings; }): Promise; getById(correlationId: string, options?: { identity?: Identity; includeProcessInstances?: boolean; }): Promise; }