intro.js
    Preparing search index...
    TourTooltipProps: Omit<TooltipProps, "hintMode" | "position" | "element"> & {
        bullets: boolean;
        buttonClass: string;
        buttons: boolean;
        currentStep: number;
        doneLabel: string;
        dontShowAgain: boolean;
        dontShowAgainLabel: string;
        hideNext: boolean;
        hidePrev: boolean;
        nextLabel: string;
        nextToDone: boolean;
        onBulletClick: (stepNumber: number) => void;
        onDontShowAgainChange: (checked: boolean) => void;
        onNextClick: (e: any) => void;
        onPrevClick: (e: any) => void;
        onSkipClick: (e: any) => void;
        prevLabel: string;
        progress: boolean;
        progressBarAdditionalClass: string;
        renderAsHtml?: boolean;
        scrollPadding: number;
        scrollToElement: boolean;
        skipLabel: string;
        step: TourStep;
        stepNumbers: boolean;
        stepNumbersOfLabel: string;
        steps: TourStep[];
    }