import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { Meta } from "./meta.js";
import { V2KeysVerifyKeyResponseData } from "./v2keysverifykeyresponsedata.js";
export type V2KeysVerifyKeyResponseBody = {
    /**
     * 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;
    data: V2KeysVerifyKeyResponseData;
};
/** @internal */
export declare const V2KeysVerifyKeyResponseBody$inboundSchema: z.ZodType<V2KeysVerifyKeyResponseBody, z.ZodTypeDef, unknown>;
export declare function v2KeysVerifyKeyResponseBodyFromJSON(jsonString: string): SafeParseResult<V2KeysVerifyKeyResponseBody, SDKValidationError>;
//# sourceMappingURL=v2keysverifykeyresponsebody.d.ts.map