import { HTTPClient } from '../../../../utils/http'; import { MeetingDocument, QueryMeetingDocumentDTO } from '../types'; export declare class MeetingDocumentsAPI { private readonly _httpClient; private readonly _basePath; constructor(_httpClient: HTTPClient, _basePath: string); find(query?: QueryMeetingDocumentDTO): Promise; download(documentId: string): Promise; createAttachment(file: File): Promise; deleteAttachment(documentId: string): Promise; } //# sourceMappingURL=documents.d.ts.map