import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { Identity } from "./identity.js";
import { Meta } from "./meta.js";
export type V2IdentitiesUpdateIdentityResponseBody = {
    data: Identity;
    /**
     * Metadata object included in every API response. This provides context about the request and is essential for debugging, audit trails, and support inquiries. The `requestId` is particularly important when troubleshooting issues with the Unkey support team.
     */
    meta: Meta;
};
/** @internal */
export declare const V2IdentitiesUpdateIdentityResponseBody$inboundSchema: z.ZodType<V2IdentitiesUpdateIdentityResponseBody, z.ZodTypeDef, unknown>;
export declare function v2IdentitiesUpdateIdentityResponseBodyFromJSON(jsonString: string): SafeParseResult<V2IdentitiesUpdateIdentityResponseBody, SDKValidationError>;
//# sourceMappingURL=v2identitiesupdateidentityresponsebody.d.ts.map