import { NewProjectConfig } from "./new.config"; export declare const kebabCase: (str: string) => string; export declare type OrmConfigTemplateParams = { database: { type: string; name: string; user: string; password: string; host: string; port: string; }; }; export declare type ConfigTemplateParams = { jwtSecret?: string; [key: string]: any; }; export declare const createNew: (config: NewProjectConfig) => Promise;