import type { InitCommandArgs } from "../types/init.js"; export interface InitCommandOptions { workspace?: string; configDir?: string; } /** * Execute the init command * This is the handler for: wingman init [options] */ export declare function executeInitCommand(args: InitCommandArgs, options?: InitCommandOptions): Promise;