import type { ChatScope } from "./types/chat.js"; export declare const CHAT_STORAGE_RELATIVE_ROOT = ".agent-workflow/chat/v1"; export declare function ensureSafeScopeDirectory(workspaceRoot: string, scope: ChatScope): Promise; export declare function scopePath(workspaceRoot: string, scope: ChatScope, fileName: string): Promise; export declare function encodeStorageIdentifier(value: string, field: string): string; export declare function assertSafeExistingPath(workspaceRoot: string, targetPath: string): Promise;