import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CommandRequest = { sessionId: string; sessionToken?: string | null | undefined; commandRequestId?: string | null | undefined; command: string; args?: Array | undefined; cwd?: string | null | undefined; env?: { [k: string]: string; } | undefined; timeoutSeconds?: number | undefined; }; /** @internal */ export declare const CommandRequest$inboundSchema: z.ZodType; /** @internal */ export type CommandRequest$Outbound = { session_id: string; session_token?: string | null | undefined; command_request_id?: string | null | undefined; command: string; args?: Array | undefined; cwd?: string | null | undefined; env?: { [k: string]: string; } | undefined; timeout_seconds: number; }; /** @internal */ export declare const CommandRequest$outboundSchema: z.ZodType; export declare function commandRequestToJSON(commandRequest: CommandRequest): string; export declare function commandRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=commandrequest.d.ts.map