import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LookupIdentityItem, LookupIdentityItem$Outbound } from "./lookupidentityitem.js"; /** * Response body for the V3 Get Identities By Phone Number API. */ export type V3GetIdentitiesByPhoneNumberResponse = { items?: Array | undefined; }; /** @internal */ export declare const V3GetIdentitiesByPhoneNumberResponse$inboundSchema: z.ZodType; /** @internal */ export type V3GetIdentitiesByPhoneNumberResponse$Outbound = { items?: Array | undefined; }; /** @internal */ export declare const V3GetIdentitiesByPhoneNumberResponse$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 V3GetIdentitiesByPhoneNumberResponse$ { /** @deprecated use `V3GetIdentitiesByPhoneNumberResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3GetIdentitiesByPhoneNumberResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3GetIdentitiesByPhoneNumberResponse$Outbound` instead. */ type Outbound = V3GetIdentitiesByPhoneNumberResponse$Outbound; } export declare function v3GetIdentitiesByPhoneNumberResponseToJSON(v3GetIdentitiesByPhoneNumberResponse: V3GetIdentitiesByPhoneNumberResponse): string; export declare function v3GetIdentitiesByPhoneNumberResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3getidentitiesbyphonenumberresponse.d.ts.map