interface MemoryAction {
    action: 'read' | 'write' | 'append' | 'search';
    category: 'docs' | 'threads' | 'knots' | 'technical' | 'profiles' | 'search';
    file_name: string;
    content?: string;
    query?: string;
}
export declare function executeMemoryFile(args: MemoryAction): Promise<any>;
export {};
//# sourceMappingURL=memory-bank.d.ts.map