import type { ITourStep } from './ITourStep'; /** * Represents the event details for a tour step change. * * @public */ export interface ITourStepChangedEventDetail { /** * The previously active step, if any. */ previousStep: ITourStep | null; /** * The newly active step, if any. */ currentStep: ITourStep | null; /** * The index of the current step. */ stepIndex: number; } //# sourceMappingURL=ITourStepChangedEventDetail.d.ts.map