import { QuestionType, QuestionImages, QuestionStatus, ExtendedQuestionAnswer } from '@streamlayer/sdk-web-types'; export type VotingOptionProps = ExtendedQuestionAnswer & { questionVoted: boolean; youSelected: boolean; isLoading: boolean; firstOption: boolean; hasCorrectAnswer?: boolean; questionType: QuestionType; imageMode?: QuestionImages; answerTimeExpired: boolean; questionStatus: QuestionStatus; votedAfterQuestionClosed: boolean; enteredAnActiveQuestion: boolean; marketClosed: boolean; onVote: (e: React.MouseEvent) => Promise; markThatVoted: (votedAfterQuestionClosed: boolean) => void; onPercentsAnimated?: () => void; isEarlyPrediction?: boolean; isAd?: boolean; webos?: boolean; }; export declare const VotingOption: React.FC;