import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateRunResponse = { /** * The ID of the run, use this to get the run status and outputs */ runId: string; }; /** @internal */ export declare const CreateRunResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateRunResponse$Outbound = { run_id: string; }; /** @internal */ export declare const CreateRunResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CreateRunResponse$ { /** @deprecated use `CreateRunResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateRunResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateRunResponse$Outbound` instead. */ type Outbound = CreateRunResponse$Outbound; } export declare function createRunResponseToJSON(createRunResponse: CreateRunResponse): string; export declare function createRunResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createrunresponse.d.ts.map