import { AttachmentService } from '../services/attachment'; import { ChangeSetChange } from '../types/customFunction'; /** * Link attachments for changeset changes that the handler resolved. * * Filters the changes for those marked with `hasAttachments` and a temp UID, * builds the temp-to-real ID map from `aliasToRealId`, and calls * `attachmentService.linkAttachments()`. * * Returns the linked real UIDs for the handler to include in its response. */ export declare function linkChangeSetAttachments(changes: ChangeSetChange[], aliasToRealId: { [tempId: string]: string; }, attachmentService: AttachmentService): Promise; //# sourceMappingURL=changeSetAttachments.d.ts.map