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