import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3StartRequestResponse = { httpMeta: components.HTTPMetadata; /** * Successful request. */ v3StartResponse?: components.V3StartResponse | undefined; }; /** @internal */ export declare const V3StartRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3StartRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3StartResponse?: components.V3StartResponse$Outbound | undefined; }; /** @internal */ export declare const V3StartRequestResponse$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 V3StartRequestResponse$ { /** @deprecated use `V3StartRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3StartRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3StartRequestResponse$Outbound` instead. */ type Outbound = V3StartRequestResponse$Outbound; } export declare function v3StartRequestResponseToJSON(v3StartRequestResponse: V3StartRequestResponse): string; export declare function v3StartRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3startrequest.d.ts.map