import { type Result } from "./result.js"; type Snapshot = { readonly path: string; readonly existed: boolean; readonly before: string | null; readonly installedHash: string; }; declare const purgeClaudeStatusline: (input: { path: string; receipt: Snapshot | null; }) => Promise>; export { purgeClaudeStatusline };