import { BlobService } from "../models/index.js";
export declare const processAttachments: (blobService: BlobService, attachments?: {
    name: string;
    path?: string;
    contentType: string;
}[]) => Promise<{
    name: string;
    url: string;
}[] | undefined>;
