/** * Health data aggregator — gathers all data the /health skill needs * in a single composite call. Parallel only — no per-task iterations. */ import type { ServiceContainer } from '@ido4/core'; import type { HealthData } from './types.js'; export interface HealthAggregatorOptions { containerName?: string; } export declare function aggregateHealthData(container: ServiceContainer, options?: HealthAggregatorOptions): Promise; //# sourceMappingURL=health-aggregator.d.ts.map