import { SessionPlan } from "./sqlite-backend.js"; export declare const jsonlFile: string; export declare function enqueuePlanWrite(task: () => Promise): Promise; export declare function withJsonlLock(task: () => Promise): Promise; export declare function writeJsonlAtomic(plans: readonly SessionPlan[]): Promise; export declare function appendJsonl(plan: SessionPlan): Promise; export declare function readAllJsonl(): Promise;