import type { InitOptions } from './types/InitOptions.js'; import type { InitSummaryData } from './InitSummaryData.js'; import type { AppCommandContext, CommandActionParams } from '../../types/CommandAction.js'; /** * Init execution function. */ export declare function init(params: Pick, keyof AppCommandContext | 'options' | 'isMultiApp'> & { /** * App summary object, created ahead of time so that a partial summary can be generated * if the process is interrupted. */ summaryData: InitSummaryData; /** * Skip writing the generated config to disk. Useful when init is run * inline before start, since the in-memory config is all that's needed. */ skipWrite?: boolean; }): Promise; //# sourceMappingURL=init.d.ts.map