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<MeetingPollExtended[]>;
    create(data: CreateMeetingPollDTO): Promise<MeetingPoll>;
    update(pollId: string, data: UpdateMeetingPollDTO): Promise<MeetingPoll>;
    delete(pollId: string): Promise<void>;
}
//# sourceMappingURL=polls.d.ts.map