import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3DomainConfirmLinkRequest = { pcid: string; }; /** @internal */ export declare const V3DomainConfirmLinkRequest$inboundSchema: z.ZodType; /** @internal */ export type V3DomainConfirmLinkRequest$Outbound = { pcid: string; }; /** @internal */ export declare const V3DomainConfirmLinkRequest$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 V3DomainConfirmLinkRequest$ { /** @deprecated use `V3DomainConfirmLinkRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DomainConfirmLinkRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DomainConfirmLinkRequest$Outbound` instead. */ type Outbound = V3DomainConfirmLinkRequest$Outbound; } export declare function v3DomainConfirmLinkRequestToJSON(v3DomainConfirmLinkRequest: V3DomainConfirmLinkRequest): string; export declare function v3DomainConfirmLinkRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3domainconfirmlinkrequest.d.ts.map