import type { GuideStep } from '../types'; /** * Preloads all images declared in steps[].preloadImages when the guide * becomes active, and tracks whether the *current* step's images are ready. */ export declare function usePreloadImages(steps: GuideStep[], currentStep: number, isActive: boolean): boolean;