import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IdentityItem = { /** * The name of the client associated with the identity. */ clientName: string; /** * The Prove-generated unique ID for the specific identity. */ identityId: string; /** * The Prove Customer ID (PCID) associated with the identity. */ pcid: string; }; /** @internal */ export declare const IdentityItem$inboundSchema: z.ZodType; /** @internal */ export type IdentityItem$Outbound = { clientName: string; identityId: string; pcid: string; }; /** @internal */ export declare const IdentityItem$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 IdentityItem$ { /** @deprecated use `IdentityItem$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentityItem$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdentityItem$Outbound` instead. */ type Outbound = IdentityItem$Outbound; } export declare function identityItemToJSON(identityItem: IdentityItem): string; export declare function identityItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=identityitem.d.ts.map