/** * Public hook for external use * Gives access to walkthrough controls and state */ declare const useWalkthrough: () => { currentStepIndex: number; step: import("..").WalkthroughStep; totalSteps: number; isActive: boolean; start: () => void; next: () => void; back: () => void; skip: () => void; finish: () => void; goToStep: (index: number) => void; }; export default useWalkthrough;