import { OrientationConfiguration } from './orientation-configuration.model'; import { OrientationTypes } from './orientation-types.enum'; export declare class TourStep { /** Identifier for step */ ID?: string; /** Lookup for step */ Lookup?: string; /** Tour step text */ Content: string; /** Selector for element that will be highlighted */ Selector?: string; /** Tour title text */ Title?: string; /** Tour subtitle text */ Subtitle?: string; /** Where the tour step will appear next to the selected element */ Orientation?: OrientationTypes; /** Where the tour step will appear next to the selected element */ OrientationConfiguration?: OrientationConfiguration[]; /** The amount (in milliseconds) of a delay before action() function is called */ ActionDelay?: number; /** Skips this step, this is so you do not have create multiple tour configurations based on user settings/configuration */ SkipStep?: boolean; /** Adds some padding for things like sticky headers when scrolling to an element */ ScrollAdjustment?: number; /** Adds default padding around tour highlighting. Does not need to be true for highlightPadding to work */ UseHighlightPadding?: boolean; /** Adds padding around tour highlighting in pixels, this overwrites the default for this step. Is not dependent on useHighlightPadding being true */ HighlightPadding?: number; /** If an element is within an iframe, this is the Selector for iframe, which is needed to find inner element */ IframeSelector?: string; } //# sourceMappingURL=tour-step.model.d.ts.map