import type { Answers, QuestionCollection } from 'inquirer'; import type { Builder, Handler } from '@onerepo/yargs'; export declare const command: string[]; export declare const description = "Generate files, folders, and Workspaces from templates."; export type Args = { 'template-dir': string; type?: string; }; export declare const builder: Builder; export declare const handler: Handler; export interface Config> { name?: string; description?: string; outDir: (vars: T) => string; prompts?: QuestionCollection; }