/** * Init Command * * Scans the codebase and creates stack.yml with auto-detected settings * and EXAMPLE_ placeholder values for the user to fill in. * * This command only initializes config files — it does not fix anything. * Vault setup, secrets, and all other fixes are handled by scanfixes * in the factiii pipeline (run: npx stack scan / npx stack fix). */ import type { InitOptions } from '../types/index.js'; export declare function init(options?: InitOptions): Promise; export default init; //# sourceMappingURL=init.d.ts.map