import type { ResolvedToolContext } from "../../shared/agent/tool.helpers.js"; import type { OpportunityOwnerInteractionProvenance } from "./opportunity.owner-approval.js"; /** Bind authoritative host provenance to one resolved tool context. */ export declare function bindOwnerApprovalProvenance(context: ResolvedToolContext, provenance: OpportunityOwnerInteractionProvenance): void; /** Read host-bound provenance without accepting any caller-supplied surrogate. */ export declare function ownerApprovalProvenanceFor(context: ResolvedToolContext): OpportunityOwnerInteractionProvenance | undefined;