import { Asset } from "./Asset"; /** * This class represents an asset stored in Adobe internal storage. */ export declare class CloudAsset implements Asset { private readonly _assetId; private readonly _downloadURI?; /** * Construct an instance of `CloudAsset`. * * @param assetId - assetId of the asset. * @param [downloadURI] - downloadURI of the asset. */ constructor(assetId: string, downloadURI?: string); /** * Returns the assetId of the asset. * * @returns assetId of the asset. */ get assetId(): string; /** * Returns the downloadURI of the asset. * * @returns downloadURI of the asset. */ get downloadURI(): string | undefined; }