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 V3BatchEnrollIdentitiesResponse = { httpMeta: components.HTTPMetadata; /** * V3BatchEnrollIdentitiesResponse */ v3BatchEnrollIdentitiesResponse?: components.V3BatchEnrollIdentitiesResponse | undefined; }; /** @internal */ export declare const V3BatchEnrollIdentitiesResponse$inboundSchema: z.ZodType; /** @internal */ export type V3BatchEnrollIdentitiesResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3BatchEnrollIdentitiesResponse?: components.V3BatchEnrollIdentitiesResponse$Outbound | undefined; }; /** @internal */ export declare const V3BatchEnrollIdentitiesResponse$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 V3BatchEnrollIdentitiesResponse$ { /** @deprecated use `V3BatchEnrollIdentitiesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3BatchEnrollIdentitiesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3BatchEnrollIdentitiesResponse$Outbound` instead. */ type Outbound = V3BatchEnrollIdentitiesResponse$Outbound; } export declare function v3BatchEnrollIdentitiesResponseToJSON(v3BatchEnrollIdentitiesResponse: V3BatchEnrollIdentitiesResponse): string; export declare function v3BatchEnrollIdentitiesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3batchenrollidentities.d.ts.map