import type { AttachmentLink, TestStepResult } from "@allurereport/core-api"; import type { UploadAttachmentDto } from "../model.js"; export declare const uploadFilenameForLink: (link: AttachmentLink) => string | undefined; export declare const toUploadAttachmentDto: (link: AttachmentLink) => UploadAttachmentDto; export declare const getAttachmentIdsFromTestStepsResults: (steps: TestStepResult[] | undefined) => Set;