import type { WhatsNewModalProps } from "./WhatsNewModal.types"; declare const useWhatsNewModal: (props: WhatsNewModalProps) => { data: { title: string; slides: { title: string; body: string; emoji?: string | undefined; imageUrl?: string | null | undefined; }[]; currentSlide: { title: string; body: string; emoji?: string | undefined; imageUrl?: string | null | undefined; }; currentSlideIndex: number; totalSlides: number; isFirstSlide: boolean; isLastSlide: boolean; progress: number; }; fns: { goNext: () => void; goBack: () => void; handleDismiss: () => void; handleContinue: () => void; }; }; export default useWhatsNewModal;