import { Poll } from '../types'; import { array } from '../types'; export declare class PollBase implements Poll { id: string; question: string; question_entities: array; options: array; total_voter_count: number; is_closed: boolean; is_anonymous: boolean; type: string; allows_multiple_answers: boolean; correct_option_id: number; explanation: string; explanation_entities: array; open_period: number; close_date: number; }