import { z } from "zod"; declare const definitionRepoPreviousNameSchema: z.ZodObject<{ name: z.ZodString; project: z.ZodString; }, z.core.$strip>; declare const definitionRepoSchema: z.ZodObject<{ name: z.ZodString; previousNames: z.ZodOptional>>; archived: z.ZodOptional; }, z.core.$strip>; declare const projectSchema: z.ZodObject<{ name: z.ZodString; github: z.ZodArray>>; archived: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>>; tags: z.ZodOptional>; }, z.core.$strip>; export declare const definitionSchema: z.ZodObject<{ projects: z.ZodArray>>; archived: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>>; tags: z.ZodOptional>; }, z.core.$strip>>; }, z.core.$strip>; export type Definition = z.infer; export type Project = z.infer; export type DefinitionRepo = z.infer; export type DefinitionRepoPreviousName = z.infer; export interface GetReposResponse { id: string; orgName: string; project: Project; repo: DefinitionRepo; } export {};