/** * Auto-generated Zod schema for OrganizationCustomProperty * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { OrganizationCustomProperty as OrganizationCustomPropertyOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const OrganizationCustomPropertySchema: z.ZodObject<{ property_name: z.ZodString; value_type: z.ZodUnion, z.ZodLiteral<"single_select">]>; required: z.ZodOptional, z.ZodLiteral]>>; default_value: z.ZodOptional>; description: z.ZodOptional>; allowed_values: z.ZodOptional>>; values_editable_by: z.ZodOptional, z.ZodLiteral<"org_and_repo_actors">]>>>; }, z.core.$strip>; export type OrganizationCustomProperty = OrganizationCustomPropertyOctokit; export declare function isOrganizationCustomProperty(value: unknown): value is OrganizationCustomProperty; //# sourceMappingURL=organization-custom-property.d.ts.map