import { ExtendedQuestion } from '@streamlayer/sdk-web-types'; interface VoteProps { openedQuestion: ExtendedQuestion; isLoading: boolean; vote: (questionId: string, answerId: string) => void; close: (questionId?: string) => void; isEarlyPrediction?: boolean; mastersApp?: boolean; webos?: boolean; } export declare const VoteSkeleton: React.FC; export declare const Vote: React.FC; export {};