import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IdentityItem, IdentityItem$Outbound } from "./identityitem.js"; /** * Response body for the V3 Identity Cross Domain API. */ export type V3CrossDomainIdentityResponse = { /** * The number of items in the Identities array. */ count: number; /** * The list of identities from other linked accounts. */ identities: Array; }; /** @internal */ export declare const V3CrossDomainIdentityResponse$inboundSchema: z.ZodType; /** @internal */ export type V3CrossDomainIdentityResponse$Outbound = { count: number; identities: Array; }; /** @internal */ export declare const V3CrossDomainIdentityResponse$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 V3CrossDomainIdentityResponse$ { /** @deprecated use `V3CrossDomainIdentityResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3CrossDomainIdentityResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3CrossDomainIdentityResponse$Outbound` instead. */ type Outbound = V3CrossDomainIdentityResponse$Outbound; } export declare function v3CrossDomainIdentityResponseToJSON(v3CrossDomainIdentityResponse: V3CrossDomainIdentityResponse): string; export declare function v3CrossDomainIdentityResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3crossdomainidentityresponse.d.ts.map