import { TourStep } from './tour-step.model'; import { ResizeDialog } from './resize-dialog.model'; export declare class GuidedTour { /** Lookup for tour */ Lookup: string; /** Identifier for tour */ ID: string; /** If this is a user's first time going through a specific tour */ IsFirstTimeViewing?: boolean; /** Use orb to start tour */ UseOrb?: boolean; /** Steps fo the tour */ Steps: TourStep[]; /** Minimum size of screen in pixels before the tour is run, if the tour is resized below this value the user will be told to resize */ MinimumScreenSize?: number; /** Dialog shown if the window width is smaller than the defined minimum screen size. */ ResizeDialog?: ResizeDialog; /** * Prevents the tour from advancing by clicking the backdrop. * This should only be set if you are completely sure your tour is displaying correctly on all screen sizes otherwise a user can get stuck. */ PreventBackdropFromAdvancing?: boolean; } //# sourceMappingURL=guided-tour.model.d.ts.map