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 V3DomainLinkRequestResponse = { httpMeta: components.HTTPMetadata; /** * V3DomainLinkResponse */ v3DomainLinkResponse?: components.V3DomainLinkResponse | undefined; }; /** @internal */ export declare const V3DomainLinkRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DomainLinkRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3DomainLinkResponse?: components.V3DomainLinkResponse$Outbound | undefined; }; /** @internal */ export declare const V3DomainLinkRequestResponse$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 V3DomainLinkRequestResponse$ { /** @deprecated use `V3DomainLinkRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DomainLinkRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DomainLinkRequestResponse$Outbound` instead. */ type Outbound = V3DomainLinkRequestResponse$Outbound; } export declare function v3DomainLinkRequestResponseToJSON(v3DomainLinkRequestResponse: V3DomainLinkRequestResponse): string; export declare function v3DomainLinkRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3domainlinkrequest.d.ts.map