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