import { BrainSlicePackage } from '../types.js'; export declare class BrainExchange { private brain; constructor(); export(opts: { name: string; description: string; author: string; categories?: string[]; tags?: string[]; minImportance?: number; limit?: number; license?: string; }): Promise<{ filePath: string; package: BrainSlicePackage; }>; import(filePath: string, opts?: { projectDir: string; agentTool?: string; }): Promise<{ imported: number; pkg: BrainSlicePackage; }>; listLocal(): BrainSlicePackage[]; private redact; } export declare function getBrainExchange(): BrainExchange; export declare function resetBrainExchangeForTests(): void; //# sourceMappingURL=brain-exchange.d.ts.map