/** * Setup command for ralph-starter * Interactive setup wizard to configure LLM and agents */ export interface SetupCommandOptions { force?: boolean; } /** * Run the setup command */ export declare function setupCommand(options: SetupCommandOptions): Promise; //# sourceMappingURL=setup.d.ts.map