import { QuestionType } from '@streamlayer/sdk-web-types'; interface WinBarProps { title?: string; points?: number; isPlayingTimer?: boolean; isTimer?: boolean; animatePoints?: boolean; questionType?: QuestionType; timerDuration?: number; votedInCurrentRender: boolean; percentsAnimated: boolean; onTimerExpired?: () => void; } export declare const WinBar: React.FC; export {};