import { DownloadAcceptEnum } from "../funcs/accountingAttachmentsDownload.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export { DownloadAcceptEnum } from "../funcs/accountingAttachmentsDownload.js"; export declare class Attachments extends ClientSDK { /** * List Attachments * * @remarks * List Attachments */ list(request: operations.AccountingAttachmentsAllRequest, options?: RequestOptions): Promise; /** * Get Attachment * * @remarks * Get Attachment */ get(request: operations.AccountingAttachmentsOneRequest, options?: RequestOptions): Promise; /** * Delete Attachment * * @remarks * Delete Attachment */ delete(request: operations.AccountingAttachmentsDeleteRequest, options?: RequestOptions): Promise; /** * Download Attachment * * @remarks * Download Attachment */ download(request: operations.AccountingAttachmentsDownloadRequest, options?: RequestOptions & { acceptHeaderOverride?: DownloadAcceptEnum; }): Promise; } //# sourceMappingURL=attachments.d.ts.map