export interface iWtsTourItem { element: string; content: string | HTMLElement; } export interface iWtsTourOutput { start?: boolean; skip?: boolean; next?: boolean; previous?: boolean; finish?: boolean; } export interface WtsTourOptions { hidePrevious?: boolean; hideSkip?: boolean; previousLabel?: string; nextLabel?: string; skipLabel?: string; doneLabel?: string; showBullet?: boolean; showOverlay?: boolean; customClass?: string; keyboardNavigation?: boolean; ecapeToClose?: boolean; showSlideCounter?: boolean; positionPreference?: 'top' | 'bottom' | 'left' | 'right'; navigationPosition?: 'top' | 'bottom'; skipButtonPosition?: 'left' | 'right'; gap?: number; }