import type { Finding } from "./finding.js"; import type { FactStore } from "../state/facts.js"; /** * Build a Finding from free text and persist it to the hub pool. * * Deterministic enrichment only: id is derived from title+now (no clock * call here — `now` is always injected at the CLI boundary). All unknown * fields are omitted; urgency/severity are set to safe neutral defaults. * * PURE: never calls Date.now() / new Date(). */ export declare function captureTask(store: FactStore, text: string, { domain, now }: { domain?: string; now: string; }): Promise; //# sourceMappingURL=task-inbox.d.ts.map