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