import { Command } from 'commander'; import type { PhaseRunners, SetupOptions } from '../setup/types'; interface RawSetupOpts { reconfigureCreds?: boolean; harness?: string; wallet?: boolean; } export declare function parseSetupOpts(raw: RawSetupOpts): SetupOptions; export declare function isNonInteractive(): boolean; export declare function printSetupBanner(): void; export declare function printNextSteps(): void; export declare function runSetup(opts: SetupOptions, phases?: PhaseRunners): Promise; export declare function registerSetupCommand(program: Command): void; export {}; //# sourceMappingURL=setup.d.ts.map