import { z } from "zod"; export declare const ContractStreamEventSchema: z.ZodObject<{ schemaVersion: z.ZodLiteral<"0.2.4">; tenantId: z.ZodString; organizationId: z.ZodString; createdAt: z.ZodString; streamEventId: z.ZodString; streamId: z.ZodString; streamScope: z.ZodEnum<{ tenant: "tenant"; organization: "organization"; run: "run"; protected_surface_resource: "protected_surface_resource"; }>; offset: z.ZodNumber; partitionKey: z.ZodString; eventType: z.ZodEnum<{ protected_path_posture_recorded: "protected_path_posture_recorded"; review_required: "review_required"; review_artifact_recorded: "review_artifact_recorded"; review_decision_recorded: "review_decision_recorded"; receipt_exported: "receipt_exported"; recovery_recommended: "recovery_recommended"; proof_gap_resolved: "proof_gap_resolved"; gateway_checked: "gateway_checked"; intent_compiled: "intent_compiled"; runtime_execution_recorded: "runtime_execution_recorded"; generated_execution_graph_recorded: "generated_execution_graph_recorded"; install_setup_recorded: "install_setup_recorded"; install_setup_refused: "install_setup_refused"; gateway_credential_ref_registered: "gateway_credential_ref_registered"; delegated_authority_ref_registered: "delegated_authority_ref_registered"; delegated_authority_status_changed: "delegated_authority_status_changed"; gateway_custody_proof_packet_recorded: "gateway_custody_proof_packet_recorded"; credential_resolution_recorded: "credential_resolution_recorded"; typed_action_commitment_recorded: "typed_action_commitment_recorded"; idempotency_ledger_recorded: "idempotency_ledger_recorded"; bypass_probe_recorded: "bypass_probe_recorded"; tool_call_draft_recorded: "tool_call_draft_recorded"; negotiation_session_recorded: "negotiation_session_recorded"; negotiation_offer_recorded: "negotiation_offer_recorded"; negotiation_decision_recorded: "negotiation_decision_recorded"; linked_agreement_recorded: "linked_agreement_recorded"; agreement_obligation_binding_recorded: "agreement_obligation_binding_recorded"; agreement_status_transition_recorded: "agreement_status_transition_recorded"; action_proposed: "action_proposed"; policy_decision_recorded: "policy_decision_recorded"; action_greenlit: "action_greenlit"; action_refused: "action_refused"; mutation_attempted: "mutation_attempted"; protected_surface_operation_claimed: "protected_surface_operation_claimed"; protected_surface_operation_released: "protected_surface_operation_released"; surface_operation_reconciled: "surface_operation_reconciled"; gateway_refused: "gateway_refused"; breaker_decision_recorded: "breaker_decision_recorded"; receipt_emitted: "receipt_emitted"; authority_certificate_emitted: "authority_certificate_emitted"; raw_evidence_read_audited: "raw_evidence_read_audited"; recovery_status_changed: "recovery_status_changed"; proof_gap_recorded: "proof_gap_recorded"; isolation_changed: "isolation_changed"; }>; eventTime: z.ZodString; producerRef: z.ZodString; objectRefs: z.ZodArray; previousEventDigest: z.ZodNullable; eventDigest: z.ZodString; payload: z.ZodRecord>>; }, z.core.$strict>; export type ContractStreamEvent = z.infer;