import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { BasePollComponent } from '../../base-poll.component'; import { Poll, PollAnswer } from 'stream-chat'; import * as i0 from "@angular/core"; /** * */ export declare class PollAnswersListComponent extends BasePollComponent implements OnChanges { class: string; /** * The even that's emitted when the update/add comment button is clicked */ readonly upsertOwnAnswer: EventEmitter; isLoading: boolean; next?: string | undefined; answers: PollAnswer[]; isClosed: boolean; ownAnswer: PollAnswer | undefined; ngOnChanges(changes: SimpleChanges): void; queryAnswers(): Promise; trackByAnswerId(_: number, answer: PollAnswer): string; protected stateStoreSelector(poll: Poll, markForCheck: () => void): () => void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }