import type { HarnessName } from './harnesses/types'; export interface SetupOptions { reconfigureCreds: boolean; harness?: HarnessName; wallet: boolean; nonInteractive: boolean; } export type PhaseRunner = (opts: SetupOptions) => Promise; export interface PhaseRunners { credentials: PhaseRunner; harnesses: PhaseRunner; wallet: PhaseRunner; } //# sourceMappingURL=types.d.ts.map