import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RunCommandRequest = { sessionId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; commandRequest: components.CommandRequest; }; /** @internal */ export declare const RunCommandRequest$inboundSchema: z.ZodType; /** @internal */ export type RunCommandRequest$Outbound = { session_id: string; "X-On-Behalf-Of"?: string | undefined; CommandRequest: components.CommandRequest$Outbound; }; /** @internal */ export declare const RunCommandRequest$outboundSchema: z.ZodType; export declare function runCommandRequestToJSON(runCommandRequest: RunCommandRequest): string; export declare function runCommandRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=runcommand.d.ts.map