import { HTTPClient } from '../../../../utils/http'; import { MeetingPoll, MeetingPollExtended, CreateMeetingPollDTO, UpdateMeetingPollDTO } from '../types'; export declare class MeetingPollsAPI { private readonly _httpClient; private readonly _basePath; constructor(_httpClient: HTTPClient, _basePath: string); find(): Promise; create(data: CreateMeetingPollDTO): Promise; update(pollId: string, data: UpdateMeetingPollDTO): Promise; delete(pollId: string): Promise; } //# sourceMappingURL=polls.d.ts.map