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 V3DomainLinkedRequestResponse = { httpMeta: components.HTTPMetadata; /** * Successful request. */ v3DomainLinkedResponse?: components.V3DomainLinkedResponse | undefined; headers: { [k: string]: Array; }; }; /** @internal */ export declare const V3DomainLinkedRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DomainLinkedRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3DomainLinkedResponse?: components.V3DomainLinkedResponse$Outbound | undefined; Headers: { [k: string]: Array; }; }; /** @internal */ export declare const V3DomainLinkedRequestResponse$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 V3DomainLinkedRequestResponse$ { /** @deprecated use `V3DomainLinkedRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DomainLinkedRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DomainLinkedRequestResponse$Outbound` instead. */ type Outbound = V3DomainLinkedRequestResponse$Outbound; } export declare function v3DomainLinkedRequestResponseToJSON(v3DomainLinkedRequestResponse: V3DomainLinkedRequestResponse): string; export declare function v3DomainLinkedRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3domainlinkedrequest.d.ts.map