import { z } from 'zod'; import { APIClient } from '@agentuity/api'; export declare const APIKeySchema: 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 APIKeyListResponseArray: z.ZodArray; lastUsedAt: z.ZodOptional>; createdAt: z.ZodString; project: z.ZodOptional>>; }, z.core.$strip>>; export declare const APIKeyListResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodArray; lastUsedAt: z.ZodOptional>; createdAt: z.ZodString; project: z.ZodOptional>>; }, z.core.$strip>>; }, z.core.$strip>], "success">; export type APIKeyListResponse = z.infer; export type APIKeyList = z.infer; export type APIKey = z.infer; export declare const APIKeyListRequestSchema: z.ZodObject<{ orgId: z.ZodOptional; projectId: z.ZodOptional; }, z.core.$strip>; export type APIKeyListRequest = z.infer; /** * List all API keys * * @param client * @param request optional filters for orgId and projectId * @returns */ export declare function apikeyList(client: APIClient, request?: APIKeyListRequest): Promise; //# sourceMappingURL=list.d.ts.map