/** * Compliance data aggregator — gathers all data the /compliance skill needs * in a single composite call instead of 7+ individual tool calls. */ import type { ServiceContainer } from '@ido4/core'; import type { ComplianceData } from './types.js'; export interface ComplianceAggregatorOptions { since?: string; until?: string; actorId?: string; containerName?: string; } export declare function aggregateComplianceData(container: ServiceContainer, options?: ComplianceAggregatorOptions): Promise; //# sourceMappingURL=compliance-aggregator.d.ts.map