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 V3DomainConfirmLinkRequestResponse = { httpMeta: components.HTTPMetadata; /** * V3DomainConfirmLinkResponse */ v3DomainConfirmLinkResponse?: components.V3DomainConfirmLinkResponse | undefined; }; /** @internal */ export declare const V3DomainConfirmLinkRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DomainConfirmLinkRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3DomainConfirmLinkResponse?: components.V3DomainConfirmLinkResponse$Outbound | undefined; }; /** @internal */ export declare const V3DomainConfirmLinkRequestResponse$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 V3DomainConfirmLinkRequestResponse$ { /** @deprecated use `V3DomainConfirmLinkRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DomainConfirmLinkRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DomainConfirmLinkRequestResponse$Outbound` instead. */ type Outbound = V3DomainConfirmLinkRequestResponse$Outbound; } export declare function v3DomainConfirmLinkRequestResponseToJSON(v3DomainConfirmLinkRequestResponse: V3DomainConfirmLinkRequestResponse): string; export declare function v3DomainConfirmLinkRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3domainconfirmlinkrequest.d.ts.map