import { HttpTransport } from '../_http'; import { RequestOptions } from '../base'; import { MeetingAttachment, MeetingAttachmentListParams, MeetingAttachmentListResponse, CreateMeetingAttachmentRequest, DownloadMeetingAttachmentResponse } from '../../models'; export declare function getMeetingAttachments(http: HttpTransport, meetingId: string, params?: MeetingAttachmentListParams, options?: RequestOptions): Promise; export declare function getAllMeetingAttachments(http: HttpTransport, meetingId: string, options?: RequestOptions): Promise; export declare function uploadMeetingAttachment(http: HttpTransport, meetingId: string, data: CreateMeetingAttachmentRequest, options?: RequestOptions): Promise; export declare function getMeetingAttachment(http: HttpTransport, meetingId: string, attachmentId: string, options?: RequestOptions): Promise; export declare function deleteMeetingAttachment(http: HttpTransport, meetingId: string, attachmentId: string, options?: RequestOptions): Promise; export declare function downloadMeetingAttachment(http: HttpTransport, meetingId: string, attachmentId: string, options?: RequestOptions): Promise; //# sourceMappingURL=attachments.d.ts.map