import { type Step } from '@forgerock/sdk-types'; import type { JourneyStep } from './step.types.js'; import type { CallbackFactory } from './callbacks/factory.js'; declare function createJourneyStep(payload: Step, callbackFactory?: CallbackFactory): JourneyStep; /** * A function that can populate the provided authentication tree step. */ type JourneyStepHandler = (step: JourneyStep) => void; export { createJourneyStep, JourneyStep, JourneyStepHandler }; //# sourceMappingURL=step.utils.d.ts.map