export declare class InitCommand { command: string; describe: string; builder(yargs: any): any; handler(argv: any): Promise; protected static getOrmConfigTemplate(database: string): string; protected static getTsConfigTemplate(): string; protected static getGitIgnoreFile(): string; protected static getUserEntityTemplate(database: string): string; protected static getRoutesTemplate(): string; protected static getControllerTemplate(): string; protected static getAppIndexTemplate(express: boolean): string; protected static getPackageJsonTemplate(projectName?: string): string; protected static getDockerComposeTemplate(database: string): string; protected static getReadmeTemplate(options: { docker: boolean; }): string; protected static appendPackageJson(packageJsonContents: string, database: string, express: boolean): string; }