import type { AuthResponse, CallbackType, Step, StepType } from '@forgerock/sdk-types'; import type { BaseCallback } from './callbacks/base-callback.js'; export type JourneyStep = AuthResponse & { type: StepType.Step; payload: Step; callbacks: BaseCallback[]; getCallbackOfType: (type: CallbackType) => T; getCallbacksOfType: (type: CallbackType) => T[]; setCallbackValue: (type: CallbackType, value: unknown) => void; getDescription: () => string | undefined; getHeader: () => string | undefined; getStage: () => string | undefined; }; //# sourceMappingURL=step.types.d.ts.map