import { type FileWriter } from './file-writer.js'; export type LocalStateFile = 'decisions.jsonl' | 'handoffs.jsonl' | 'evidence.jsonl' | 'tasks.jsonl'; export type LocalStateResult = { path: string; files: LocalStateFile[]; }; export declare function setupLocalState(cwd: string, writer: FileWriter): LocalStateResult;