import { z } from 'zod';
declare const schema: z.ZodObject<{
    project: z.ZodString;
    package: z.ZodString;
    public: z.ZodDefault<z.ZodBoolean>;
    description: z.ZodString;
    author: z.ZodString;
    typescript: z.ZodBoolean;
    testing: z.ZodDefault<z.ZodBoolean>;
    reportCodeCoverage: z.ZodDefault<z.ZodBoolean>;
    githubOwner: z.ZodString;
    githubRepository: z.ZodString;
    path: z.ZodString;
    dryRun: z.ZodDefault<z.ZodBoolean>;
}, z.core.$strict>;
type OptionsInput = z.input<typeof schema>;
type Options = z.infer<typeof schema>;
export { schema, schema as options, type Options, type OptionsInput };
