import { runPhase } from '../runner.js'; import type { DatabaseAdapterId, PackageManager, PhaseId } from '../types.js'; export interface InitOptions { from?: PhaseId; to?: PhaseId; only?: PhaseId; apply?: boolean; dryRun?: boolean; yes?: boolean; reset?: boolean; resetIMeanIt?: boolean; force?: boolean; database?: DatabaseAdapterId; pm?: PackageManager; quiet?: boolean; noColor?: boolean; } export declare function runInit(opts: InitOptions): Promise; export declare function shouldHaltInit(state: Awaited>): boolean; //# sourceMappingURL=init.d.ts.map