/** * Template Generator * Creates project structure from file-based templates * * Instead of inline string templates, this uses the `packages/template/base/` * folder. Template files contain {{PLACEHOLDER}} variables that are substituted * at scaffold time. */ import { TemplateOptions } from '../types'; /** * Generate a new JetStart project from the file-based template. * * 1. Copy packages/template/base/ → projectPath * 2. Rename __PACKAGE_PATH__ → actual package dir (e.g. com/jetstart/myapp) * 3. Replace {{VAR}} placeholders in all text files * 4. Generate dynamic files (jetstart.config.json, gradle wrapper, local.properties) */ export declare function generateProjectTemplate(projectPath: string, options: TemplateOptions): Promise; //# sourceMappingURL=template.d.ts.map