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 V3DomainUnlinkRequestResponse = { httpMeta: components.HTTPMetadata; /** * V3DomainUnlinkResponse */ v3DomainUnlinkResponse?: components.V3DomainUnlinkResponse | undefined; }; /** @internal */ export declare const V3DomainUnlinkRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DomainUnlinkRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3DomainUnlinkResponse?: components.V3DomainUnlinkResponse$Outbound | undefined; }; /** @internal */ export declare const V3DomainUnlinkRequestResponse$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 V3DomainUnlinkRequestResponse$ { /** @deprecated use `V3DomainUnlinkRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DomainUnlinkRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DomainUnlinkRequestResponse$Outbound` instead. */ type Outbound = V3DomainUnlinkRequestResponse$Outbound; } export declare function v3DomainUnlinkRequestResponseToJSON(v3DomainUnlinkRequestResponse: V3DomainUnlinkRequestResponse): string; export declare function v3DomainUnlinkRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3domainunlinkrequest.d.ts.map