import { type KlawConfig } from "./config-utils.js"; import { type MemoryReadResult } from "./read-file-shared.js"; export declare function readMemoryFile(params: { workspaceDir: string; extraPaths?: string[]; relPath: string; from?: number; lines?: number; defaultLines?: number; maxChars?: number; }): Promise; export declare function readAgentMemoryFile(params: { cfg: KlawConfig; agentId: string; relPath: string; from?: number; lines?: number; }): Promise;