import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { ITourStep } from './ITourStep'; /** * Represents the `ITourStepElementProps` interface. * * @public */ export interface ITourStepElementProps extends IThemeableProps { step: ITourStep | null; isFirstStep: boolean; isLastStep: boolean; } //# sourceMappingURL=ITourStepElementProps.d.ts.map