import { z } from 'zod'; export declare const secretSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; isActive: z.ZodBoolean; isReserved: z.ZodBoolean; lastUsedAt: z.ZodNullable; expiresAt: z.ZodNullable; createdAt: z.ZodString; updatedAt: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; createdAt: string; updatedAt: string; expiresAt: string | null; isActive: boolean; isReserved: boolean; lastUsedAt: string | null; }, { id: string; key: string; createdAt: string; updatedAt: string; expiresAt: string | null; isActive: boolean; isReserved: boolean; lastUsedAt: string | null; }>; export type SecretSchema = z.infer; //# sourceMappingURL=secrets.schema.d.ts.map