import { z } from "zod"; export declare const compositionFileSchema: z.ZodObject<{ type: z.ZodString; id: z.ZodString; file: z.ZodObject<{ name: z.ZodString; content: z.ZodString; }, z.core.$strip>; component: z.ZodString; npmDependencies: z.ZodArray; fileDependencies: z.ZodArray; }, z.core.$strip>; export interface CompositionFile extends z.infer { } export declare const compositionIndexSchema: z.ZodArray; fileDependencies: z.ZodArray; }, z.core.$strip>>; export interface Compositions extends z.infer { } export declare const processEnvSchema: z.ZodObject<{ REGISTRY_URL: z.ZodDefault; HTTPS_PROXY: z.ZodOptional; }, z.core.$strip>; export declare const addCommandFlagsSchema: z.ZodObject<{ force: z.ZodOptional; dryRun: z.ZodOptional; outdir: z.ZodOptional; all: z.ZodOptional; tsx: z.ZodOptional; }, z.core.$strip>; export interface AddCommandFlags extends z.infer { }