import type { Thread } from "@claudexor/schema"; export type ThreadLifecycleAction = "trash" | "restore" | "purge"; /** Pure lifecycle reducer; ThreadStore remains the sole journal writer. */ export declare function reduceThreadLifecycle(thread: Thread, action: ThreadLifecycleAction): Thread; //# sourceMappingURL=thread-lifecycle.d.ts.map