/******************************* * Main init command implementation * @module *******************************/ import type { InitOptions } from "./types.js"; interface InitCommandDependencies { deployProject?: (projectDir: string) => Promise; } /** * Initializes a new Veryfront project with the specified template */ export declare function initCommand(options: InitOptions, dependencies?: InitCommandDependencies): Promise; export {}; //# sourceMappingURL=init-command.d.ts.map