import type { Step, StepRun, StepScope } from './step.js'; export type StepExecutor = (run: StepRun, handler: () => T | Promise) => Promise; export type InlineStepOptions = { scope?: StepScope; execute?: StepExecutor; }; export declare function createInlineStep(options?: InlineStepOptions): Step; //# sourceMappingURL=inline.d.ts.map