import type { Attachment } from "../models/Attachment"; import type { AttachmentCreateFromUrl } from "../models/AttachmentCreateFromUrl"; import type { CancelablePromise } from "../core/CancelablePromise"; export declare class AttachmentService { /** * Attach a file from a provided URL to a task * Attach a file from a provided URL to a task. The file will be downloaded and attached asynchronously. This operation may take a few moments to complete. * @param id * @param requestBody * @returns Attachment Success, including the attached attachment details * @throws ApiError */ static addTaskAttachmentFromUrl(id: string, requestBody: AttachmentCreateFromUrl): CancelablePromise; }