import { ExtendedQuestionAnswer, QuestionType } from '@streamlayer/sdk-web-types'; interface FeedbackProps { feedbackMessages?: Partial>; questionType: QuestionType; questionVoted?: boolean; questionVotedCorrectly?: boolean; hasCorrectAnswer: boolean; showExpiredNotification: boolean; showClosedNotificationTrivia: boolean; votedInCurrentRender: boolean; votedAfterQuestionClosed: boolean; enteredAnActiveQuestion: boolean; voteErrorMessage: string; marketClosed: boolean; percentsAnimated: boolean; votedAnswer?: ExtendedQuestionAnswer; isEarlyPrediction?: boolean; correctAnswer?: ExtendedQuestionAnswer; onAnimationEnd?: () => void; } export declare const Feedback: React.FC; export {};