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; update(actionPointId: string, data: UpdateMeetingActionPointDTO): Promise; updatePriority(items: UpdateMeetingActionPointPriorityDTO[]): Promise; delete(actionPointId: string[]): Promise; } //# sourceMappingURL=action_points.d.ts.map