import { z } from 'zod'; export declare const ApiKey: z.ZodObject<{ platformId: z.ZodString; displayName: z.ZodString; hashedValue: z.ZodString; truncatedValue: z.ZodString; lastUsedAt: z.ZodOptional>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>; export type ApiKey = z.infer; export declare const ApiKeyResponseWithValue: z.ZodObject<{ id: z.ZodString; platformId: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; displayName: z.ZodString; truncatedValue: z.ZodString; lastUsedAt: z.ZodOptional>; value: z.ZodString; }, z.core.$strip>; export type ApiKeyResponseWithValue = z.infer; export declare const ApiKeyResponseWithoutValue: z.ZodObject<{ id: z.ZodString; platformId: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; displayName: z.ZodString; truncatedValue: z.ZodString; lastUsedAt: z.ZodOptional>; }, z.core.$strip>; export type ApiKeyResponseWithoutValue = z.infer; export declare const CreateApiKeyRequest: z.ZodObject<{ displayName: z.ZodString; }, z.core.$strip>; export type CreateApiKeyRequest = z.infer; //# sourceMappingURL=index.d.ts.map