import * as z from 'zod/v4'; export interface Input { /** * Whether to enable verbose debug logging. * * Defaults to `false`. */ debug: boolean; } export type InitConfigInput = z.infer; export declare const initConfigInputSchema: z.ZodObject<{ destinationDir: z.ZodString; templateComplete: z.ZodBoolean; templateData: z.ZodObject<{ ownerName: z.ZodString; repoName: z.ZodString; platformName: z.ZodUnion, z.ZodLiteral<"arm64">]>; defaultBranch: z.ZodString; }, z.core.$catchall>; templateName: z.ZodString; }, z.core.$strip>; export type InitConfig = z.infer; declare const initConfigSchema: z.ZodObject<{ destinationDir: z.ZodString; templateComplete: z.ZodBoolean; templateName: z.ZodString; templateData: z.ZodObject<{ ownerName: z.ZodString; repoName: z.ZodString; defaultBranch: z.ZodString; orgName: z.ZodString; teamName: z.ZodString; port: z.ZodString; }, z.core.$catchall>; entryPoint: z.ZodOptional; packageManager: z.ZodDefault>; type: z.ZodOptional, z.ZodLiteral<"package">]>>; }, z.core.$strip>; export {};