import { z } from "zod"; export declare const CreateRuntimeExecutionInputSchema: z.ZodObject<{ tenantId: z.ZodString; organizationId: z.ZodString; principalIntentRef: z.ZodString; principalId: z.ZodString; agentId: z.ZodString; runId: z.ZodString; runtimeAdapterId: z.ZodString; executionShape: z.ZodEnum<{ unknown: "unknown"; single_tool_call: "single_tool_call"; tool_dispatch_chain: "tool_dispatch_chain"; generated_mcp_tool_chain: "generated_mcp_tool_chain"; codemode_block: "codemode_block"; shell_exec_block: "shell_exec_block"; browser_action: "browser_action"; scheduled_job: "scheduled_job"; gateway_only: "gateway_only"; }>; runtimePosture: z.ZodEnum<{ unknown: "unknown"; prompt_guidance: "prompt_guidance"; hook_assisted: "hook_assisted"; protected_capability: "protected_capability"; bounded_generation: "bounded_generation"; gateway_enforced_only: "gateway_enforced_only"; hosted_control_plane: "hosted_control_plane"; }>; executionBlockRef: z.ZodString; executionBlockDigest: z.ZodString; generatedCodeOrSpecRefs: z.ZodDefault>; allowedToolCapabilityIds: z.ZodDefault>; observedToolCallRefs: z.ZodDefault>; observedConsequentialCallCount: z.ZodDefault; loopDetected: z.ZodDefault; retryDetected: z.ZodDefault; branchDetected: z.ZodDefault; dynamicToolConstructionDetected: z.ZodDefault; unobservedRegionRefs: z.ZodDefault>; accessPosture: z.ZodEnum<{ unknown: "unknown"; isolated: "isolated"; controlled_outbound: "controlled_outbound"; filesystem_available: "filesystem_available"; network_available: "network_available"; secrets_available: "secrets_available"; }>; uncertaintyMarkers: z.ZodDefault>; refusalReasonCodes: z.ZodDefault>; evidenceRefs: z.ZodDefault>; }, z.core.$strict>; export type CreateRuntimeExecutionInput = z.input;