import * as z from "zod"; export declare const GamificationHelpTopicSchema: z.ZodObject<{ id: z.ZodString; chipLabel: z.ZodOptional; title: z.ZodString; description: z.ZodString; bullets: z.ZodOptional>; }, "strip", z.ZodTypeAny, { title: string; id: string; description: string; chipLabel?: string | undefined; bullets?: string[] | undefined; }, { title: string; id: string; description: string; chipLabel?: string | undefined; bullets?: string[] | undefined; }>; export type GamificationHelpTopic = z.infer; export declare const GamificationHelpPagePropsSchema: z.ZodObject<{ title: z.ZodOptional; subtitle: z.ZodOptional; supportingText: z.ZodOptional; backLabel: z.ZodOptional; closeLabel: z.ZodOptional; onBack: z.ZodOptional, z.ZodVoid>>; onClose: z.ZodOptional, z.ZodVoid>>; customTopics: z.ZodOptional; title: z.ZodString; description: z.ZodString; bullets: z.ZodOptional>; }, "strip", z.ZodTypeAny, { title: string; id: string; description: string; chipLabel?: string | undefined; bullets?: string[] | undefined; }, { title: string; id: string; description: string; chipLabel?: string | undefined; bullets?: string[] | undefined; }>, "many">>; }, "strip", z.ZodTypeAny, { title?: string | undefined; onClose?: ((...args: unknown[]) => void) | undefined; onBack?: ((...args: unknown[]) => void) | undefined; subtitle?: string | undefined; supportingText?: string | undefined; backLabel?: string | undefined; closeLabel?: string | undefined; customTopics?: { title: string; id: string; description: string; chipLabel?: string | undefined; bullets?: string[] | undefined; }[] | undefined; }, { title?: string | undefined; onClose?: ((...args: unknown[]) => void) | undefined; onBack?: ((...args: unknown[]) => void) | undefined; subtitle?: string | undefined; supportingText?: string | undefined; backLabel?: string | undefined; closeLabel?: string | undefined; customTopics?: { title: string; id: string; description: string; chipLabel?: string | undefined; bullets?: string[] | undefined; }[] | undefined; }>; export type GamificationHelpPageProps = z.infer;