import { CSSProperties } from 'react'; import { HelperProps } from 'tour-navigator/lib/TourNavigator/types'; export interface TourHelperProps extends HelperProps { headerStyle?: CSSProperties; descriptionStyle?: CSSProperties; helperBackgroundStyle?: CSSProperties; helperStyle?: CSSProperties; footerStyle?: CSSProperties; firstButtonStyle?: CSSProperties; lastButtonStyle?: CSSProperties; finalButtonText?: string | ((currentStepIndex: number) => string); imgStyle?: CSSProperties; hideArrow?: boolean; arrowStyle?: CSSProperties; onComplete?: () => void; firstButtonText?: string | ((currentStepIndex: number) => string); lastButtonText?: string | ((currentStepIndex: number) => string); handleFirstButtonClick?: (props: HelperProps) => void; handleLastButtonClick?: (props: HelperProps) => void; footerText?: string; footerLink?: string; showFooter?: boolean; }