import { z } from 'zod'; import { APIClient } from '@agentuity/api'; export declare const APIKeyCreateResponseSchema: z.ZodObject<{ id: z.ZodString; value: z.ZodString; }, z.core.$strip>; export declare const APIKeyCreateFullResponseSchema: 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; value: z.ZodString; }, z.core.$strip>; }, z.core.$strip>], "success">; export type APIKeyCreateResponse = z.infer; export declare const APIKeyCreateRequestSchema: z.ZodObject<{ name: z.ZodString; expiresAt: z.ZodString; projectId: z.ZodOptional>; orgId: z.ZodOptional>; }, z.core.$strip>; export type APIKeyCreateRequest = z.infer; /** * Create a new API key * * @param client * @param request the API key creation request * @returns */ export declare function apikeyCreate(client: APIClient, request: APIKeyCreateRequest): Promise; //# sourceMappingURL=create.d.ts.map