import type { ChatStorage } from "./chat-storage.js"; export { encodeStorageIdentifier } from "./chat-storage-local-paths.js"; export interface LocalChatStorageOptions { workspaceRoot: string; } export declare function createLocalChatStorage(options: LocalChatStorageOptions): ChatStorage;