import { AssetProps } from '../types'; export declare const listEndUserAssetsFromAssetCloud: (licenseKey: string, projectId: string, identityId: string) => Promise; export declare const uploadFileToCDN: (file: Blob | File, uploadUrl: string) => Promise; export declare const uploadToAssetCloud: (files: File[], licenseKey: string, projectId: string, identityId: string) => Promise; export declare const deleteFromAssetCloud: (assets: AssetProps[], licenseKey: string, projectId: string, identityId: string) => Promise<(void | undefined)[]>;