/** * Auto-generated Zod schema for WorkflowStepQueued * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { WorkflowStepQueued as WorkflowStepQueuedOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const WorkflowStepQueuedSchema: z.ZodObject<{ name: z.ZodString; status: z.ZodLiteral<"queued">; conclusion: z.ZodNull; number: z.ZodNumber; started_at: z.ZodNull; completed_at: z.ZodNull; }, z.core.$strip>; export type WorkflowStepQueued = WorkflowStepQueuedOctokit; export declare function isWorkflowStepQueued(value: unknown): value is WorkflowStepQueued; //# sourceMappingURL=workflow-step-queued.d.ts.map