/** * Shared utility for resolving the active container name and * profile-derived semantic state helpers. * * Used by all aggregators to auto-detect the active container when * no explicit container name is provided, and to classify task statuses * using the methodology profile instead of hardcoded state names. */ import type { ServiceContainer, MethodologyProfile } from '@ido4/core'; export declare function resolveActiveContainer(container: ServiceContainer, containerName?: string): Promise; export declare function getReviewStateNames(profile: MethodologyProfile): Set; /** * Get the primary execution container id from the profile. * This is the container with a completionRule other than 'none'. */ export declare function getExecutionContainerId(profile: MethodologyProfile): string; //# sourceMappingURL=wave-detection.d.ts.map