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