import { HTTPClient } from '../../../../utils/http';
import { MeetingActionPoint, CreateMeetingActionPointDTO, UpdateMeetingActionPointDTO, UpdateMeetingActionPointPriorityDTO } from '../types';
export declare class MeetingActionPointsAPI {
    private readonly _httpClient;
    private readonly _basePath;
    constructor(_httpClient: HTTPClient, _basePath: string);
    create(data: CreateMeetingActionPointDTO): Promise<MeetingActionPoint>;
    update(actionPointId: string, data: UpdateMeetingActionPointDTO): Promise<MeetingActionPoint>;
    updatePriority(items: UpdateMeetingActionPointPriorityDTO[]): Promise<MeetingActionPoint[]>;
    delete(actionPointId: string[]): Promise<void>;
}
//# sourceMappingURL=action_points.d.ts.map