import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3DomainUnlinkRequest = { pcidFrom?: string | undefined; pcidTo?: string | undefined; }; /** @internal */ export declare const V3DomainUnlinkRequest$inboundSchema: z.ZodType; /** @internal */ export type V3DomainUnlinkRequest$Outbound = { pcidFrom?: string | undefined; pcidTo?: string | undefined; }; /** @internal */ export declare const V3DomainUnlinkRequest$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 V3DomainUnlinkRequest$ { /** @deprecated use `V3DomainUnlinkRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DomainUnlinkRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DomainUnlinkRequest$Outbound` instead. */ type Outbound = V3DomainUnlinkRequest$Outbound; } export declare function v3DomainUnlinkRequestToJSON(v3DomainUnlinkRequest: V3DomainUnlinkRequest): string; export declare function v3DomainUnlinkRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3domainunlinkrequest.d.ts.map