import { type HookName } from '@byted-apaas/cli-core-sdk'; import { type Context } from '@byted-apaas/cliore'; export type Steps = Array<{ hookName: HookName; title: string; }>; export interface RunStepsOptions { context: Context; } export default function runSteps(steps: Steps, { context }: RunStepsOptions): Promise;