/** * Auto-generated Zod schema for AlertInstance * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { AlertInstance as AlertInstanceOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const AlertInstanceSchema: z.ZodObject<{ ref: z.ZodString; analysis_key: z.ZodString; environment: z.ZodString; state: z.ZodUnion, z.ZodLiteral<"dismissed">, z.ZodLiteral<"fixed">]>; commit_sha: z.ZodOptional; message: z.ZodOptional; }, z.core.$strip>>; location: z.ZodOptional; start_line: z.ZodOptional; end_line: z.ZodOptional; start_column: z.ZodOptional; end_column: z.ZodOptional; }, z.core.$strip>>; classifications: z.ZodOptional>; }, z.core.$strip>; export type AlertInstance = AlertInstanceOctokit; export declare function isAlertInstance(value: unknown): value is AlertInstance; //# sourceMappingURL=alert-instance.d.ts.map