import { z } from 'zod'; export declare const packageCredentialRequirementSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; type: z.ZodString; usedByWorkflows: z.ZodArray; }, "strip", z.ZodTypeAny, { id: string; name: string; type: string; usedByWorkflows: string[]; }, { id: string; name: string; type: string; usedByWorkflows: string[]; }>; export declare const packageRequirementsSchema: z.ZodObject<{ credentials: z.ZodEffects; }, "strip", z.ZodTypeAny, { id: string; name: string; type: string; usedByWorkflows: string[]; }, { id: string; name: string; type: string; usedByWorkflows: string[]; }>, "many">>, { id: string; name: string; type: string; usedByWorkflows: string[]; }[] | undefined, { id: string; name: string; type: string; usedByWorkflows: string[]; }[] | undefined>; }, "strip", z.ZodTypeAny, { credentials?: { id: string; name: string; type: string; usedByWorkflows: string[]; }[] | undefined; }, { credentials?: { id: string; name: string; type: string; usedByWorkflows: string[]; }[] | undefined; }>; export type PackageCredentialRequirement = z.infer; export type PackageRequirements = z.infer;