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 V3UnifyRequestResponse = { httpMeta: components.HTTPMetadata; /** * Successful Request. */ v3UnifyResponse?: components.V3UnifyResponse | undefined; }; /** @internal */ export declare const V3UnifyRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3UnifyRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3UnifyResponse?: components.V3UnifyResponse$Outbound | undefined; }; /** @internal */ export declare const V3UnifyRequestResponse$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 V3UnifyRequestResponse$ { /** @deprecated use `V3UnifyRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3UnifyRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3UnifyRequestResponse$Outbound` instead. */ type Outbound = V3UnifyRequestResponse$Outbound; } export declare function v3UnifyRequestResponseToJSON(v3UnifyRequestResponse: V3UnifyRequestResponse): string; export declare function v3UnifyRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3unifyrequest.d.ts.map