import { type COLLECTION_CDN_RELEASES, type COLLECTION_DAPP } from '../constants/deploy.constants';
import type { FileAndPaths, UploadFile } from '../types/deploy';
export declare const uploadFiles: ({ files: sourceFiles, uploadFile, sourceAbsolutePath, collection }: {
    files: FileAndPaths[];
    uploadFile: UploadFile;
    sourceAbsolutePath: string;
    collection: typeof COLLECTION_DAPP | typeof COLLECTION_CDN_RELEASES;
}) => Promise<void>;
