import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3DomainConfirmLinkResponse = { /** * Success */ success: boolean; }; /** @internal */ export declare const V3DomainConfirmLinkResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DomainConfirmLinkResponse$Outbound = { success: boolean; }; /** @internal */ export declare const V3DomainConfirmLinkResponse$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 V3DomainConfirmLinkResponse$ { /** @deprecated use `V3DomainConfirmLinkResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DomainConfirmLinkResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DomainConfirmLinkResponse$Outbound` instead. */ type Outbound = V3DomainConfirmLinkResponse$Outbound; } export declare function v3DomainConfirmLinkResponseToJSON(v3DomainConfirmLinkResponse: V3DomainConfirmLinkResponse): string; export declare function v3DomainConfirmLinkResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3domainconfirmlinkresponse.d.ts.map