import * as z from "zod"; export type APIKeyV2 = { /** * Unique identifier for this API key */ id: string; /** * The name of the API key, for the user's reference */ name: string; }; /** @internal */ export declare const APIKeyV2$inboundSchema: z.ZodType; /** @internal */ export type APIKeyV2$Outbound = { id: string; name: string; }; /** @internal */ export declare const APIKeyV2$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 APIKeyV2$ { /** @deprecated use `APIKeyV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `APIKeyV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `APIKeyV2$Outbound` instead. */ type Outbound = APIKeyV2$Outbound; } //# sourceMappingURL=apikeyv2.d.ts.map