import { type MultiModelConfig } from '@zhixuan92/multi-model-agent-core'; import { InitiativeRecordRuntime } from '../application/initiative-record-runtime.js'; export interface ImportBootstrapDeps { /** Starting point for nearest-`.mma/` ancestor resolution (usually the process cwd). */ cwd: string; /** `--stem` value. */ stem: string; /** Loads the resolved server config — same discovery order as every other subcommand. */ loadConfig: () => Promise; /** Opens the Initiative runtime. Defaults to `InitiativeRecordRuntime.open`; injectable for unit tests. */ openRuntime?: (opts: { stateDir: string; }) => InitiativeRecordRuntime; /** Overrides the provenance timestamp. Defaults to the real clock. */ now?: () => string; stdout?: (s: string) => boolean; stderr?: (s: string) => boolean; } export declare function runInitiativesImportBootstrap(deps: ImportBootstrapDeps): Promise; //# sourceMappingURL=initiative-import-bootstrap.d.ts.map