import type { ChainNamespace, JobInitial, PendingJobEntry } from "./types"; /** * Build a persistable pending-job entry from any adapter's submit response. * Chain-agnostic: every `submit*` response carries `{ requestId, kind }`, * so the CLI can call this once regardless of namespace and avoid shape * drift if the SDK ever extends the entry (e.g. adding `chainId`). * * `now` is overridable for deterministic tests. */ export declare function pendingJobFromInitial(initial: JobInitial, namespace: ChainNamespace, now?: () => string): PendingJobEntry;