import type { GamificationHelpPageProps } from "./GamificationHelpPage.types"; declare const useGamificationHelpPage: (props: GamificationHelpPageProps) => { data: { title: string; subtitle: string; supportingText: string; backLabel: string; closeLabel: string; topics: { title: string; id: string; description: string; chipLabel?: string | undefined; bullets?: string[] | undefined; }[]; }; fns: { handleBack: () => void; handleClose: () => void; }; }; export default useGamificationHelpPage;