import type { MemoryPort } from '@wrongstack/core/types'; export interface MemorySlashDeps { memoryStore: MemoryPort; } export declare function createMemorySlashCommand(deps: MemorySlashDeps): { name: string; description: string; argsHint: string; category: 'Inspect'; help: string; run(args: string): Promise<{ message: string; }>; }; //# sourceMappingURL=memory-slash.d.ts.map