import { type CreateOutput, type GeneratorClass, type GeneratorContext, type TemplateOptions, TemplateType } from '../utils/types'; export declare function importGenerator(templateType: TemplateType): GeneratorClass; /** * Template Service */ export declare class TemplateService { private static instance; private _cwd; private _context; constructor(cwd?: string, context?: GeneratorContext); /** * Get an instance of TemplateService * @param cwd cwd of current environment. CLI: don't need to set explicitly. VS Code: it's typically the root workspace path * @param context optional generator context with fs and templatesRootPath */ static getInstance(cwd?: string, context?: GeneratorContext): TemplateService; /** * Getting cwd of current environment */ get cwd(): string; /** * Setting cwd of current environment * In VS Code, it's typically the root workspace path */ set cwd(cwd: string); /** * Create using templates * @param templateType template type * @param templateOptions template options * @param customTemplatesRootPathOrGitRepo custom templates root path or git repo. If not specified, use built-in templates */ create(templateType: TemplateType, templateOptions: TOptions, customTemplatesRootPathOrGitRepo?: string): Promise; }