import { Effect, FileSystem, Path } from "effect"; import type { ThreadRow, TranscriptMetadata } from "./types.js"; export type LoadOptions = { claudeHome?: string; }; export declare const loadClaudeData: (options?: LoadOptions | undefined) => Effect.Effect<{ paths: import("./types.js").ClaudePaths; threads: ThreadRow[]; transcripts: TranscriptMetadata[]; transcriptsByThreadId: Map; }, import("effect/PlatformError").PlatformError, FileSystem.FileSystem | Path.Path>;