/** * fetchBrainEntries — SDK tool wrapping fetchBrainEntries from memory/retrieval. * * Layer 3 of the 3-layer BRAIN retrieval pattern (search → timeline → fetch). * Batch-fetches full entry details by IDs, grouped by type prefix. * * @arch SDK Tool (Category B) — pure-functional, contracts-typed, no I/O at top level * @task T10070 * @epic T9835 */ import type { FetchBrainEntriesInput, FetchBrainEntriesOutput } from '@cleocode/contracts'; import type { RegisteredSdkTool } from '../task-tools/sdk-tool.js'; /** Registered SDK tool for batch-fetching full BRAIN entry details (Layer 3). */ export declare const fetchBrainEntries: RegisteredSdkTool>; //# sourceMappingURL=brain-fetch.d.ts.map