/** * Template generation utilities for init command */ /** * Registers common Handlebars helpers */ export declare function registerHandlebarsHelpers(): void; /** * Gets adapter name from template */ export declare function getAdapterName(template: string): string; /** * Creates config data structure */ export declare function createConfigData(template: string, testDir: string, appType: string, testType: string): any; /** * Generates config template content */ export declare function generateConfigTemplate(template: string, format: string, testDir: string, appType: string, testType: string): string; /** * Generates test template content */ export declare function generateTestTemplate(template: string, configFile: string): string; /** * Creates Docker files from templates */ export declare function createDockerFiles(template: string): Promise; //# sourceMappingURL=init-templates.d.ts.map