export declare class InitHandler { private cwd; private smartconfigPath; constructor(cwd?: string); /** * Load existing .smartconfig.json or create empty config */ private loadExistingConfig; /** * Save config to .smartconfig.json */ private saveConfig; /** * Run the interactive init wizard */ runWizard(): Promise; /** * Configure a single bundle interactively */ private configureSingleBundle; /** * Configure a bundle manually with optional pre-filled values */ private configureManualBundle; /** * Configure files to include */ private configureIncludeFiles; } /** * Run the init command */ export declare function runInit(): Promise;