import type { z } from "zod"; export declare const ClientCredentialsItemSchema: z.ZodObject<{ client_id: z.ZodString; name: z.ZodString; allowed_scopes: z.ZodArray>; created_at: z.ZodOptional>; updated_at: z.ZodOptional; }, z.core.$strip>; export declare const ClientCredentialsCreatedItemSchema: z.ZodObject<{ client_id: z.ZodString; name: z.ZodString; client_secret: z.ZodString; }, z.core.$strip>; export type ClientCredentialsItem = z.infer; export type ClientCredentialsCreatedItem = z.infer; //# sourceMappingURL=ClientCredentials.d.ts.map