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