/** * Auto-generated Zod schema for Committer * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { Committer as CommitterOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const CommitterSchema: z.ZodObject<{ name: z.ZodString; email: z.ZodNullable; date: z.ZodOptional; username: z.ZodOptional; }, z.core.$strip>; export type Committer = CommitterOctokit; export declare function isCommitter(value: unknown): value is Committer; //# sourceMappingURL=committer.d.ts.map