/** * Board data aggregator — gathers all data the /board skill needs * in a single composite call instead of 5-6 individual tool calls. */ import type { ServiceContainer } from '@ido4/core'; import type { BoardData } from './types.js'; export interface BoardAggregatorOptions { containerName?: string; } export declare function aggregateBoardData(container: ServiceContainer, options?: BoardAggregatorOptions): Promise; //# sourceMappingURL=board-aggregator.d.ts.map