import { z } from 'zod'; export declare const commitSchema: z.ZodObject<{ hash: z.ZodString; message: z.ZodString; date: z.ZodCoercedDate; author: z.ZodString; }, z.core.$strip>; export type Commit = z.infer;