/** * AnnotationAggregator — Tool Annotation Aggregation Strategy * * Aggregates per-action hints (readOnly, destructive, idempotent) * into a single annotation record, with explicit overrides. * * Pure-function module: no state, no side effects. */ import { type InternalAction } from '../types.js'; export declare function aggregateAnnotations(actions: readonly InternalAction[], explicitAnnotations: Record | undefined): Record; //# sourceMappingURL=AnnotationAggregator.d.ts.map