export interface EditParams { accountId: string; attachmentId: string; content: string; } export interface EditResult { attachmentId: string; filename: string; mimeType: string; oldSizeBytes: number; newSizeBytes: number; cachePopulated: boolean; extractTextLength?: number; } export declare function memoryEditAttachment(params: EditParams): Promise; //# sourceMappingURL=memory-edit-attachment.d.ts.map