/** The store could not even be opened inside the bound: this hook does nothing at all. * `phase` comes straight off argv and may be absent — say so rather than printing * "git-hook undefined", which reads as a bug in avcs rather than a missing argument. */ export declare function storeOpenTimeoutMessage(phase: string | undefined, ms: number): string; /** * The capture stopped cleanly at the bound (#181): it finished the op in flight, flushed what * it had staged, and counted the rest. This is the message a slow ingest should normally end * with — every run leaves progress behind, so repeated commits converge instead of repeating * the same unfinished work forever. */ export declare function partialCaptureMessage(phase: "pre-commit" | "post-merge", ms: number, capturedOps: number, remaining: number): string; /** * The hard deadline fired: the capture could not stop cooperatively (a store lock, a * synchronous section) and the process is exiting under it. The capture stages its writes * (`store.batched`), so nothing it had authored survives — say so; the old wording promised * the opposite (#156, #181). */ export declare function preCommitTimeoutMessage(ms: number): string; //# sourceMappingURL=hookTimeoutMessage.d.ts.map