/** * Auto-generated Zod schema for Team * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { Team as TeamOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const TeamSchema: z.ZodObject<{ name: z.ZodString; id: z.ZodNumber; node_id: z.ZodString; slug: z.ZodString; description: z.ZodNullable; privacy: z.ZodUnion, z.ZodLiteral<"closed">, z.ZodLiteral<"secret">]>; url: z.ZodString; html_url: z.ZodString; members_url: z.ZodString; repositories_url: z.ZodString; permission: z.ZodString; parent: z.ZodOptional; privacy: z.ZodUnion, z.ZodLiteral<"closed">, z.ZodLiteral<"secret">]>; url: z.ZodString; html_url: z.ZodString; members_url: z.ZodString; repositories_url: z.ZodString; permission: z.ZodString; notification_setting: z.ZodOptional, z.ZodLiteral<"notifications_disabled">]>>; }, z.core.$strip>>>; notification_setting: z.ZodOptional, z.ZodLiteral<"notifications_disabled">]>>; }, z.core.$strip>; export type Team = TeamOctokit; export declare function isTeam(value: unknown): value is Team; //# sourceMappingURL=team.d.ts.map