import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetBatchIdentityItem = { /** * A unique Prove-generated identifier for the enrolled identity. This is a UUID that can be used to reference the identity in future requests. */ proveId?: string | undefined; }; /** @internal */ export declare const GetBatchIdentityItem$inboundSchema: z.ZodType; /** @internal */ export type GetBatchIdentityItem$Outbound = { proveId?: string | undefined; }; /** @internal */ export declare const GetBatchIdentityItem$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 GetBatchIdentityItem$ { /** @deprecated use `GetBatchIdentityItem$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetBatchIdentityItem$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetBatchIdentityItem$Outbound` instead. */ type Outbound = GetBatchIdentityItem$Outbound; } export declare function getBatchIdentityItemToJSON(getBatchIdentityItem: GetBatchIdentityItem): string; export declare function getBatchIdentityItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getbatchidentityitem.d.ts.map