import { z } from "zod"; export declare const A2ATransportThreatPostureSchema: z.ZodEnum<{ prompt_injection_suspected: "prompt_injection_suspected"; hidden_terms_suspected: "hidden_terms_suspected"; spoofed_agent_suspected: "spoofed_agent_suspected"; rate_abuse_suspected: "rate_abuse_suspected"; }>; export type A2ATransportThreatPosture = z.infer; export declare const A2ATransportEventSchema: z.ZodObject<{ transportEventId: z.ZodString; transportEventRef: z.ZodString; checkpointRef: z.ZodString; eventKind: z.ZodEnum<{ message: "message"; push: "push"; status: "status"; task: "task"; agent_card: "agent_card"; artifact: "artifact"; }>; eventTime: z.ZodString; eventDigest: z.ZodString; replayKeyDigest: z.ZodString; protocolVersionPosture: z.ZodEnum<{ accepted_current: "accepted_current"; accepted_compatible: "accepted_compatible"; downgrade_refused: "downgrade_refused"; unsupported_proof_gap: "unsupported_proof_gap"; }>; authPosture: z.ZodEnum<{ authenticated_request: "authenticated_request"; declared_auth_only: "declared_auth_only"; unauthenticated_proof_gap: "unauthenticated_proof_gap"; auth_refused: "auth_refused"; }>; rawMaterialPosture: z.ZodEnum<{ redacted_ref: "redacted_ref"; raw_transcript: "raw_transcript"; raw_message_parts: "raw_message_parts"; raw_artifact_parts: "raw_artifact_parts"; credential_material: "credential_material"; payment_material: "payment_material"; signer_material: "signer_material"; }>; threatPostures: z.ZodDefault>>; evidenceRefs: z.ZodDefault>; proofGapRefs: z.ZodDefault>; }, z.core.$strict>; export type A2ATransportEvent = z.infer; export declare const A2AIngressPressureInputSchema: z.ZodObject<{ transportWindowRef: z.ZodString; checkpointBudget: z.ZodNumber; events: z.ZodArray; eventTime: z.ZodString; eventDigest: z.ZodString; replayKeyDigest: z.ZodString; protocolVersionPosture: z.ZodEnum<{ accepted_current: "accepted_current"; accepted_compatible: "accepted_compatible"; downgrade_refused: "downgrade_refused"; unsupported_proof_gap: "unsupported_proof_gap"; }>; authPosture: z.ZodEnum<{ authenticated_request: "authenticated_request"; declared_auth_only: "declared_auth_only"; unauthenticated_proof_gap: "unauthenticated_proof_gap"; auth_refused: "auth_refused"; }>; rawMaterialPosture: z.ZodEnum<{ redacted_ref: "redacted_ref"; raw_transcript: "raw_transcript"; raw_message_parts: "raw_message_parts"; raw_artifact_parts: "raw_artifact_parts"; credential_material: "credential_material"; payment_material: "payment_material"; signer_material: "signer_material"; }>; threatPostures: z.ZodDefault>>; evidenceRefs: z.ZodDefault>; proofGapRefs: z.ZodDefault>; }, z.core.$strict>>; }, z.core.$strict>; export type A2AIngressPressureInput = z.infer; export declare const A2AIngressPressurePlanSchema: z.ZodObject<{ planKind: z.ZodLiteral<"a2a_ingress_pressure_plan">; transportWindowRef: z.ZodString; observedEventCount: z.ZodNumber; uniqueCheckpointCount: z.ZodNumber; duplicateReplayKeyCount: z.ZodNumber; rawMaterialEventCount: z.ZodNumber; threatEventCount: z.ZodNumber; checkpointBudget: z.ZodNumber; checkpointCandidates: z.ZodArray; proofGapRefs: z.ZodDefault>; }, z.core.$strict>>; deferredCheckpointRefs: z.ZodDefault>; refusedEventRefs: z.ZodDefault>; pressureOutcome: z.ZodEnum<{ refuse_raw_material: "refuse_raw_material"; within_budget: "within_budget"; back_pressure_required: "back_pressure_required"; proof_gap_required: "proof_gap_required"; }>; evidenceRefs: z.ZodDefault>; proofGapRefs: z.ZodDefault>; authorityBoundary: z.ZodObject<{ recordsPerMessageKernelState: z.ZodLiteral; checkpointCandidatesOnly: z.ZodLiteral; actionContractCreated: z.ZodLiteral; authorityCreated: z.ZodLiteral; policyEvaluated: z.ZodLiteral; greenlightIssued: z.ZodLiteral; gatewayCheckPerformed: z.ZodLiteral; mutationAttempted: z.ZodLiteral; }, z.core.$strict>; }, z.core.$strict>; export type A2AIngressPressurePlan = z.infer; export declare function planA2AIngressPressure(inputValue: A2AIngressPressureInput): A2AIngressPressurePlan;