import { AppNodeRef } from '../../..'; import { ResponsiveStore } from '../../useSdkResponsive'; import { Gamification as GamificationClass } from '@streamlayer/feature-gamification'; export declare const GamificationOverlay: React.FC<{ gamification: GamificationClass; className?: string; }>; /** * Standalone version of the gamification overlay * includes the question and user details, which are shown in a modal and should be available on any overlay */ export declare const GamificationOverlayStandalone: React.FC<{ gamification: GamificationClass; className?: string; responsiveStore: ResponsiveStore; appNode: AppNodeRef; useContainer?: boolean; }>;