import { z } from 'zod'; import { APIClient } from '@agentuity/api'; export declare const APIKeyDetailSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; orgId: z.ZodString; type: z.ZodString; expiresAt: z.ZodNullable; lastUsedAt: z.ZodOptional>; createdAt: z.ZodString; project: z.ZodOptional>>; }, z.core.$strip>; export declare const APIKeyGetResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodObject<{ id: z.ZodString; name: z.ZodString; orgId: z.ZodString; type: z.ZodString; expiresAt: z.ZodNullable; lastUsedAt: z.ZodOptional>; createdAt: z.ZodString; project: z.ZodOptional>>; }, z.core.$strip>; }, z.core.$strip>], "success">; export type APIKeyDetail = z.infer; /** * Get a specific API key by id * * @param client * @param id the API key id * @returns */ export declare function apikeyGet(client: APIClient, id: string): Promise; //# sourceMappingURL=get.d.ts.map