declare type WalkthroughProps = { aria?: { [key: string]: string; }; callback?: () => void; className?: string; continuous?: boolean; data?: { [key: string]: string; }; id?: string; run?: boolean; steps?: []; stepIndex?: number; debug?: boolean; disableCloseOnEsc?: boolean; disableOverlay?: boolean; disableOverlayClose?: boolean; disableScrolling?: boolean; floaterProps?: object; hideBackButton?: boolean; hideCloseButton?: boolean; showProgress?: boolean; showSkipButton?: boolean; spotlightClicks?: boolean; spotlightPadding?: number; styles?: { options: { beaconSize?: number; arrowColor?: string; backgroundColor?: string; primaryColor?: string; overlayColor?: string; spotlightShadow?: string; width?: number; zIndex?: number; }; }; }; declare const Walkthrough: (props: WalkthroughProps) => JSX.Element; export default Walkthrough;